-
Notifications
You must be signed in to change notification settings - Fork 52
CSS TRICK
LYF edited this page Sep 26, 2016
·
6 revisions
.fixed{
position: flxed;
left: 0;
right: 0;
margin: 0 auto;
}::-webkit-scrollbar{width:0px};会优化字体的显示效果,经过实验,貌似是字体变的瘦了一些,颜色稍浅了一些(整体看起来更顺眼一点儿)。 使不使用这个TRICK,还需要你在项目里实验一下看看效果再决定。
html{
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
text-rendering: optimizeLegibility;
}li{
height: auto;
}
li:before{
content: '';
float: left;
padding: 100%;
}http://stackoverflow.com/questions/29307971/css-grid-of-squares-with-flexbox