価格と税込みみたいなパターン、どうまーかぁっぷするのか
価格と税込みを表示する HTML、A か B 使うかで迷ってるけど、そもそも価格に strong
使うものなのかみたいなのある。
とりあえず A でいこう。
<!-- A --> <div> <strong> 2,000円 <small> (税込) </small></strong> </div>
<!-- B --> <div> <strong> 2,000円 </strong> <small> (税込) </small> </div> ````