recherche

Maison  >  Questions et réponses  >  le corps du texte

css3 - 为啥img的高度和a的高度不一样

<p>
    <a href="">
        <img src="images/1.jpg" alt="">
    </a>
</p>
css
*{
    margin: 0;padding: 0;
}

@media (min-width: 320px) {
html {
    font-size: 100px;
}
}
@media (min-width: 360px) {
html {
font-size: 112.5px;
}
}
@media (min-width: 400px) {
html {
font-size: 125px;
}
}
p{
    margin: 2%;
}
a{
    display: block;
}
img{
    height: .64rem;
}


为什么img的高度是64px,而a的高度是114px呢?

高洛峰高洛峰2785 Il y a quelques jours517

répondre à tous(4)je répondrai

  • 黄舟

    黄舟2017-04-17 11:33:14

    确定margin,padding都取消了?

    répondre
    0
  • 高洛峰

    高洛峰2017-04-17 11:33:14

    img标签加 display:block
    或者
    a标签加 font-size:0 或 line-height:0

    répondre
    0
  • 怪我咯

    怪我咯2017-04-17 11:33:14

    因为img是内联元素,外层有个默认line-height

    répondre
    0
  • PHP中文网

    PHP中文网2017-04-17 11:33:14

    em具有继承性
    img高度以em计算的话,它的高度为0.64*a元素的的font-size
    以chrome浏览器模拟的iphone5的话,得的结果
    img高80px,元素高度为125px

    你的64、114这个搭配怎么弄出来的?

    répondre
    0
  • Annulerrépondre