gpt4 book ai didi

css - 显示图像和文本相互内联

转载 作者:行者123 更新时间:2023-11-28 18:12:42 24 4
gpt4 key购买 nike

我有这个 CSS:

<style type="text/css">
#box {
width:100%;
height:80px;
background-color:#eeeeee;
}
.box-inner {
width:80%;
margin:0 auto 0 auto;
text-align:center;
}
#text, #text a {
font-size:16px;
color:#F36F25;
margin:10px;
}
#text:hover, #text a:hover {
color:#666666;
text-decoration:none;
}
#text img {
vertical-align: middle;
margin-right:20px;
}
</style>

它当前显示内联图像和文本,但我有多个图像/文本彼此下方。我怎样才能使所有图像在彼此下方的相同位置对齐?

这是一个 fiddle :http://jsfiddle.net/8dsTu/

最佳答案

http://jsfiddle.net/8dsTu/4/

<div id="text">
<img src="../images/icons/address.png" height="60" />
<div style="display:inline-block;">
Address 1,<br />
Address 2,<br />
County Post Code
</div>
</div>

编辑CSS:

.box-inner {
width:80%;
margin:0 auto 0 auto;
text-align:left;
margin-left:100px;
}

关于css - 显示图像和文本相互内联,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18357069/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com