我目前正在学习基本的HTML。我的代码有什么问题,为什么徽标出现在文本的右侧,但我已将其分配到左侧。
<html>
<title>Registration Form</title>
<center>
<h3>
<font color="336699">
Asia Pacific College
<img src="Asia_Pacific_College_Logo.png" style="width:32px;height:32px;" vertical- align="left">
</font>
<h3>
<h4>
<font color="336699">Office of the Registrar</font>
<h4>
</center>
&#13;
结果是:
答案 0 :(得分:0)
第一个拼写错误。 其次,你可能试图在左侧水平设置而不是垂直。
当您在文本“亚太学院”之后放置img标签时,图像/徽标显示在文本的右侧。如果你之前放了img标签,你会在左侧看到img。
或者应用以下css来更改图像的对齐 -
h4 img {
float: left; // or right if you want to put it right side of the text.
}