Basj
Basj

Reputation: 46473

Wrong dashed outline around a <div>

If you click here, then click on the link "A new article" and then come back to the previous page (browser history previous page), you will see this:

enter image description here

Why this strange dashed polygonal form/geometry? How to have it rectangular instead?

The code seems normal:

<div class="article">
  <a href="article/coolarticle">
    <h2 class="articletitle">A new article</h2>
    <div class="articleinfo">by Jo, on 2015 April 10th</div>
  </a>
  ...
</div>

Upvotes: 0

Views: 78

Answers (1)

Azulite
Azulite

Reputation: 46

Apply below style to the a tag should make the outline to be a rectangle:

<a href="article/coolarticle" style="display:block;">

Upvotes: 1

Related Questions