我观看了这一网站,但我认为我要么不正确理解,要么不理解使用OOCSS的好处:
Example HTML:
<div class="border-1 bg-2 color-1 font-1">
</div>
例:
/* borders */
.border-1 { border: 1px solid red; }
/* backgrounds: */
.bg-2 { background: yellow; }
/* other sections */
我认为,如果能够迅速改变多种因素的风格,例如能够改变肤色制度,将是非常有益的。
但实际上,你重新界定了超文本中的风格/ook,或者至少是其中的一部分。 当然,这优于使用<代码>e属性,因为你仍然能够交换一套团体的风格。
The point is, you are defining the style-groups inside the HTML, but I learned that you should create "logical" groups inside the HTML (e.g. class="nav-item"
/ class="btn submit-btn"
) and the CSS completely applies the style and defines which elements belong together from the "stylistic" point of view (e.g. .nav-item, .submit-btn { background: red; }
).
也许我完全误解这一概念。 然而,我仍然不知道建设我的安保部的好办法。