简体   繁体   English

min css 这两个类和 ID

[英]min css these two classes & ids

What is the minimalist syntax for these two classes?这两个类的极简语法是什么?

.sortable1Wrapper { width:190px; height:200px; border: 1px solid #eee; float:left; margin: 0px 5px 0px 0px }
.sortable2Wrapper { width:190px; height:200px; border: 1px solid #eee; float:left; }

What is I style by their ids?根据他们的 id,我的风格是什么?

.sortable1Wrapper { width:190px; height:200px; border: 1px solid #eee; float:left; margin: 0px 5px 0px 0px }
.sortable2Wrapper { width:190px; height:200px; border: 1px solid #eee; float:left; }

the minimalist sintax for your two class is你的两个班级的极简主义语法是

.sortable1Wrapper, .sortable2Wrapper { width:190px; height:200px; border: 1px solid #eee; float:left; }
.sortable1Wrapper { margin: 0px 5px 0px 0px }

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM