当前位置: 移动技术网 > IT编程>网页制作>CSS > 文字图片浮动居中

文字图片浮动居中

2018年09月10日  | 移动技术网IT编程  | 我要评论
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>document</title>
</head>
<style>
.nav {
height: 44px;
line-height: 44px;
width: 100%;
background-color: bisque;
}
.nav img {
vertical-align: middle;
}
ul {
list-style: none;
}
ul li {
float: left;
}
</style>
<body>
<div class="nav">
<ul>
<li><img src="./机器人.png" alt=""></li>
<li>oa li123456</li>
<li>1442435459@qq.com</li>
<li>登录 注册</li>
</ul>
</div>
</body>
</html>

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网