DEV Community

Discussion on: The reason why I chose Tailwind over Bootstrap

Collapse
 
perpetual_education profile image
perpetual . education • Edited

How can you live with the markup?

https://dev-to-uploads.s3.amazonaws.com/i/eojs6eejhqyme23pj8r2.png

(of either)

It seems like the browser should just return "Error: extremely ugly and improper HTML"

When you could write the markup properly - and style is with CSS?

<user-card>
  <picture class='avatar'>
    <img src='https://place.com/image/1'>
  </picture>

  <h1 class='name'>@ivy</h1>
  <h2 class='title'>Experience at Perpetual Education</h2>

  <footer class='actions'>
    <a class='link' href='/ivy'>Message me</a>
  </footer>
</user-card>