相关疑难解决方法(0)

CSS类命名约定

在网页上,有两个控件块(主要和次要),大多数人会使用哪些类名?

选择1:

<div class="primary controls">
 <button type="button">Create</button>
</div>

<div class="secondary controls">
 <button type="button">Edit</button>
 <button type="button">Remove</button>
</div>
Run Code Online (Sandbox Code Playgroud)

选择2:

<div class="primary-controls controls">
 <button type="button">Create</button>
</div>

<div class="secondary-controls controls">
 <button type="button">Edit</button>
 <button type="button">Remove</button>
</div>
Run Code Online (Sandbox Code Playgroud)

css naming-conventions

65
推荐指数
2
解决办法
7万
查看次数

标签 统计

css ×1

naming-conventions ×1