html - 为什么我在 anchor 标签中出现小破折号?

标签 html anchor image

<a href="service.html">
<img width="175" height="40" style="margin-left:20px; margin-top:10px; margin-bottom:10px;" src="image/Sea Freight.png"/>
</a>  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<a href="airfreight.html" >
<img width="175" height="40" style="margin-left:20px; margin-top:10px; margin-bottom:10px;" src="image/Air Freight.png">
</a>  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<a href="projectcargo.html">
<img width="175" height="40" style="margin-left:20px; margin-top:10px; margin-bottom:10px;" src="image/Project Cargo.png">
</a>
<br/>
<a href="customclearance.html" >
<img width="175" height="40" style="margin-left:20px; margin-top:10px; margin-bottom:10px;" src="image/Custom Clearance.png">
</a>   &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<a href="transportation.html" >
<img width="175" height="40" style="margin-left:20px; margin-top:10px; margin-bottom:10px;" src="image/Domestic Transportation.png">
</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<a href="thirdparty.html" >
<img width="175" height="40" style="margin-left:20px; margin-top:10px; margin-bottom:10px;" src="image/Warehousing and Distribution.png">
</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
</br>
<a href="coastalcargo.html" >
<img width="175" height="40" style="margin-left:20px; margin-top:10px; margin-bottom:10px;" src="image/Coastal Cargo.png">
</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<a href="veseelchartering.html" >
<img width="175" height="40" style="margin-left:20px; margin-top:10px; margin-bottom:10px;" src="image/Vessel Chertring.png">
</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
</br>

我在 anchor 中使用 img 标签创建了按钮。 为什么我在右角出现小破折号??

提前致谢

最佳答案

有一个默认的text-decoration:underline与 anchor 关联 <a>标签。由于<a> </a>中有空格,下划线就是您看到的那条线。

使用 text-decoration:none<a> ,应该可以解决。

a {
    text-decoration: none;
}

关于html - 为什么我在 anchor 标签中出现小破折号?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13291150/

相关文章:

html - 如何通过 CSS 显示多行长链接?

ruby-on-rails - link_to 中的 anchor 标记

c# - 为什么 Bitmap.Save 会改变图像的大小?

java - 如何将 BufferedImage 转换/转换为图像?

javascript - 是否有可能有一个隐藏的Javascript文件

html - Bootstrap 分页中的禁用链接

html - CSS 布局,中间列固定宽度并定位,两个外部列流动宽度,无间距

c# - BitmapImage 与 ImageBrush 的性能

html - HTML5音频问题

php - 使用php将while循环中的数据插入到表中