Safari not registering
tags

2019-09-14 22:26发布

问题:

http://www.xsracing.org/test2/

I am working on that site, and for some reason in the version of safari my boss has, the
tags that I use to put space between the images on the sponsors bar do not work. It works fine in every other browser.

回答1:

You can also define a css rule to add a space below all the images :

img{
  margin-bottom: 10px;
}

Or just for some images :

.myImage{
  margin-bottom: 10px;
}

<img src="myimg.png" class="myImage"/>


回答2:

There is no </br> tag. It's <br>



回答3:

Use <br />, being sure to close it at the end.



标签: html safari