1. ホーム
  2. html

[解決済み] Is it sometimes bad to use <BR />?

2022-04-20 04:09:15

Question

Is it sometimes bad to use <BR/> tags?

I ask because some of the first advice my development team gave me was this: Don't use <BR/> ; instead, use styles. But why? Are there negative outcomes when using <BR/> tags?

How to solved?

The main reason for not using <br> is that it's not semantic . If you want two items in different visual blocks, you probably want them in different logical blocks.

In most cases this means just using different elements, for example <p>Stuff</p><p>Other stuff</p> そして、CSSを使用してブロックの間隔を適切に調整します。

というケースがあります。 <br> が意味的に有効である場合、すなわち、改行が 部分 を送信します。これは本当に2つのユースケースに限られます - 詩とメーリングアドレスです。