css でさまざまな種類の境界線をコーディングする方法は?
HTML テンプレートでボーダー スタイルのグループをデザインしたいと考えています。.hello などの特別な css セレクターの下に境界線 css コードを追加する必要があるのか 、境界線スタイルを境界線 css グループに分離する必要があるのか 、時々混乱します。現在、sass+bootstrap を使用しています。css export で仕事をするための原則を教えてほしい。
<div class="box bodered">has border around box</div>
<div class="box bodered dotted">border type is dotted</div>
<div class="box bodered type_1">border type with image shadow effort</div>
<div class="box bordered top">only has border at top</div>
<div class="box bordered left">only has border at left</div>
<div class="box bordered right">only has border at right</div>
<div class="box bordered bottom">only has border at bottom</div>