css 文字怎么对齐左边的图标
发布网友
发布时间:2022-04-06 13:33
我来回答
共2个回答
热心网友
时间:2022-04-06 15:02
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>易宽带卡密系统</title>
<style>
body{margin:0px; padding:0px;}
.body_center{width:900px; height:600px; margin:0 auto;}
.body_center .logo{width:564px; height:55px; background:url(images/logo.png)}
.body_center .top_right{width:200px; height:14px; float:right; background:#C33}
.body_center .top_right em{width:16px; height:14px; background:url(screen.png) no-repeat; float:left;}
.body_center .top_right a{font-size:12px; float:left; font-weight:bold; line-height:14px;}
</style>
</head>
<body>
<div class="body_center">
<div class="logo"></div>
<div class="top_right">
<em></em>
<a href="#">提取码购买</a>
</div>
</div>
</body>
</html>追问加了 还是完全无法对齐
追答我刚才没看你代码 你现在看下 你跟各加个float
热心网友
时间:2022-04-06 16:20
图标是背景的话,控制下图标的位置。
直接用img的话,用下margin-top试试