我有以下 HTML 代码,我想将其样式包含在不同文件的 CSS 中
<div id="leftPanel" style="background-color:grey;
margin-left:7px;
margin-top:7px;
float:left;">
<img src="images/fa.png">
</div>
<div id="right" style="font-size:72%;float:left; margin-left:15px;margin-top:15px">
Lorem Ipsum Text oder Claim<br>gerne auch mehrzeilig
</div>
看起来像这样:
现在,如果我尝试在单独的 CSS 中插入样式,如下所示:
#leftPanel {
background-color:grey;
margin-left:7px;
margin-top:7px;
float:left;
}
在 HTML 中:
<link rel="stylesheet" href="css/style.css"/>
<div id="leftPanel">
<img src="images/fa.png">
</div>
然后改变位置,得到这样的结果: