在网页上,有两个控件块(主要和次要),大多数人会使用哪些类名?
选择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)