我想在同一行中排列圖像和h1
。我附加了我的源代碼,但它不起作用。有人可以告訴它有什麼問題嗎?將圖像和文字排列在同一行中
<head>
.header img{
float: left;
width: 2px;
height: 3px;
background: #555;
}
.header h1{
position: relative;
top: 18px;
left: 10px;
}
<title> home page </title>
</head>
<body>
<div class="header">
<img src="greenlock.jpg" alt="logo" />
<h1> UNIVERCITY OF GREENLOCK <h1>
</div>
您可以刪除定位(和浮動)並將它們顯示爲行內塊元素 – VilleKoo