摘要:
#main{ width:600px; height:100px; border:1px black solid; margin:100px; overflow: auto; scroll-snap-type: x mandatory; } #main ul{ width:4000px;} #mai 阅读全文
posted @ 2021-01-05 22:30
玖先生
阅读(246)
评论(0)
推荐(0)
摘要:
html::-webkit-scrollbar{ width:10px; /* height:1px; 针对横向滚动条*/ } /*定义滚动条的样式*/ html::-webkit-scrollbar-thumb{ background: #f90; border-radius: 15px; } / 阅读全文
posted @ 2021-01-05 22:21
玖先生
阅读(86)
评论(0)
推荐(0)
摘要:
CSS Shapes布局可以实现不规则的文字环绕效果,需要和浮动配合使用。 shape-outside: margin-box; /*设置文本是根据对象的外边距/内边距/内容环绕*/ clip-path: polygon(0 0,0 100px,100px 100px);/*裁切对象*/ /* 基本 阅读全文
posted @ 2021-01-05 22:16
玖先生
阅读(55)
评论(0)
推荐(0)