我想我尝试过各种各样的事情。必须有一些我不理解的东西。我以同样的方式在另一个页面上完成了这个,它似乎工作正常。但现在,它没有。有什么问题?
#musik {font-family: Verdana; float: left; font-size: 30px}
#xdj {width: 650 px; height: 450px}
<strong><p id="musik"> M U S I K </p></strong>
<br>
<img id="xdj" src="xdj.jpg" alt="xdj-rx">
我只是不喜欢我的照片,在标题之下......
答案 0 :(得分:5)
你的代码有点混乱。
我已将其清理干净并提供解决方案,请参阅代码中的注释。
#musik {
font-family: Verdana;
/* float: left; remove this line */
font-weight: 900; /* add this line, so you can remove the <strong> element */
font-size: 30px
}
#xdj {
width: 650px;
height: 450px
}
&#13;
<p id="musik"> M U S I K </p>
<img id="xdj" src="http://placehold.it/650x450" alt="xdj-rx">
&#13;