我有很多具有不同大小、填充和边距值的块。所以我想创建支持CSS类并组合如下;
CSS
.m-t-5 { margin-top: 5px; }
.m-t-10 { margin-top: 10px; }
.m-t-15 { margin-top: 15px; }
p-10 { padding: 10px; }
p-15 { padding: 15px; }
.f-left { float: left; }
.f-right { float: left; }
HTML
<div class="m-t-5 p-20 f-left lined"></div>
<div class="p-10 m-0 f-right"></div>
通过使用这个,我所有的类名都变得很大(我的意思是长度)。那么这是一个好习惯吗?请建议我是继续这种方式还是创建多个具有自己属性的 CSS 类。
问候。