site.css 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. /* 邊角框設計
  2. 使用時,最外層一定要有position: relative;
  3. */
  4. .image-border {
  5. position: absolute;
  6. width: 30px;
  7. height: 30px;
  8. }
  9. .image-border-left-top {
  10. top: -2px;
  11. left: -2px;
  12. border-left: 2px solid #B9C1AD;
  13. border-top: 2px solid #B9C1AD;
  14. }
  15. .image-border-right-top {
  16. top: -2px;
  17. right: -2px;
  18. border-right: 2px solid #B9C1AD;
  19. border-top: 2px solid #B9C1AD;
  20. }
  21. .image-border-left-bottom {
  22. bottom: -2px;
  23. left: -2px;
  24. border-bottom: 2px solid #B9C1AD;
  25. border-left: 2px solid #B9C1AD;
  26. }
  27. .image-border-lright-bottom {
  28. bottom: -2px;
  29. right: -2px;
  30. border-right: 2px solid #B9C1AD;
  31. border-bottom: 2px solid #B9C1AD;
  32. }
  33. /* 拉軸隱藏
  34. 用兩個div將拉軸藏起來
  35. */
  36. .scroll-outer-container{
  37. position: relative;
  38. overflow: hidden;
  39. }
  40. .scroll-outer-container .scroll-inner-container{
  41. position: absolute;
  42. left: 0;
  43. top: 0;
  44. right: -18px;
  45. bottom: 0;
  46. overflow-x: hidden;
  47. overflow-y: scroll;
  48. }
  49. /* 省略字符*/
  50. .ellipsis {
  51. overflow:hidden;
  52. white-space: nowrap;
  53. text-overflow: ellipsis;
  54. }