Skip to content

VBC-097: br-tags-for-layout

warning

Category: ux-dx
Analysis: Regex (whole file)
File types: .html, .js, .ts, .tsx, .astro
Scope: source code only, ignoring anything inside strings and comments
Tags: html accessibility

What it reports

Multiple <br> tags used for layout. Use CSS margin or padding instead.

Flagged

html
<p>one<br /><br />two</p>

Not flagged

html
<p>one<br />two</p>

Pattern

regex
<br\s*/?>(\s*<br\s*/?>)+

Released under the MIT License.