css - 链接图片下方的多出的边(横线)如何消除?
PHPz
PHPz 2017-04-17 13:03:46
0
9
598
PHPz
PHPz

学习是最好的投资!

reply all(9)
伊谢尔伦

img{display: block;}

As the previous friend said, img is an inline element, just convert img into a block element

大家讲道理

img is an inline element and has:

    display: inline;

Similar to text, the baseline is not at the bottom of the container. This can be eliminated by setting the display or font-size attributes

header > a > img {
    display: inline-block;
    font-size: 0;
}

You can also change the line-height of its parent element a

header > a {
    line-height: 0;
}
洪涛

Not border:none?

洪涛

I wipe it, isn’t it text-decoration:none;?

巴扎黑

Set the style of link a?

刘奇
a {
    text-decoration: none;
}

http://www.w3schools.com/css/css_link.asp
http://www.w3schools.com/css/tryit.asp?filename=trycss_link_decoration

迷茫

Generally, pictures will be displayed directly without underlining. The underline appears because you wrapped the a tag in the image. You can write
a{
text-decoration:none;
}
in css to eliminate the underline of the a tag

Peter_Zhu

Try adding a CSS reset?

Ty80

Actually, I want to ask why if you set the background-color here in *{padding:0; margin:0; background-color: #ccc;}, any other tags will be affected.

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!