Safari not registering
tags

2019-09-14 21:59发布

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.

标签: html safari
3条回答
Luminary・发光体
2楼-- · 2019-09-14 22:18

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

查看更多
唯我独甜
3楼-- · 2019-09-14 22:37

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

查看更多
ゆ 、 Hurt°
4楼-- · 2019-09-14 22:40

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"/>
查看更多
登录 后发表回答