嗨,我的内联嵌入有问题。他们将我的文本向下推或取消水平对齐,我不知道如何纠正它。
这是我的(HTML)代码:
<div id="WindMax">
<embed src="WeatherIcons/UpArrow.svg" type="image/svg+xml" class="E25px" />
77
<span class="Set">mph</span>
</div>
和(CSS)代码:
embed {
margin:0; padding:0; border:0; outline:0;
display:inline;
}
embed.E25px {
width:25px; height:25px;
}
embed.E30px {
width:30px; height:30px;
}
span.Set {
font:bold 15px 'Arial Narrow',Arial,Sans-Serif;
text-align:center;
display:inline;
}
#WindMax {
background:;
position:absolute;
width:100px; height:25px;
margin:45px 0 0 570px;
font:bold 25px/25px 'Arial Narrow',Arial,Sans-Serif;
text-align:left;
z-index:-996;
}
提前干杯:)