adong搬砖

导航

随笔分类 -  前端 / css

flex+margin(列表布局)
摘要:.item { --n: 8; background-color: red; width: 50px; height: 50px; margin: 10px calc((100% - var(--n)*50px)/var(--n)/2); } #container { width: 600px; h 阅读全文

posted @ 2024-09-02 14:48 adong搬砖 阅读(29) 评论(0) 推荐(0)

滚动条不显示
摘要:/*滚动条不显示(连接选择器的时候没有空格)*/ ::-webkit-scrollbar{display:none} 阅读全文

posted @ 2023-11-26 00:04 adong搬砖 阅读(21) 评论(0) 推荐(0)

一行溢出和两行溢出
摘要:/*一行溢出*/.box1{ width:100px; white-space:nowrap; overflow: hidden; text-overflow: ellipsis; } /*两行溢出(有时候不起作用,给固定高度)*/ .box2{ overflow: hidden; text-ove 阅读全文

posted @ 2023-11-25 23:17 adong搬砖 阅读(31) 评论(0) 推荐(0)