p标签中的⽂字垂直居中
确定好p标签的位置后,<p><span>这是美⼥</span></p>,在p标签中加⼀个span标签,设置span的css时根据p标签的长宽计算好span的margin-top即可
⽰例代码:
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8">
<style>
li{list-style:none;}
p{position: absolute;top: 0px;left: 48px;background-color: darkgrey;width: 300px;height: 50px;}
span{position:absolute;margin-top: 10px;margin-left: 120px;}
img{width: 300px;height:300px;margin: 0px;padding: 0px;}
</style>
<script>
</script>
</head>
<body>
<ul>
<li>
<img src="img/1.jpg">
</li>position标签属性
<li></li>
</ul>
<p><span>这是美⼥</span></p>
</body>
</html>

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。