博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
p标签中的文字垂直居中
阅读量:6266 次
发布时间:2019-06-22

本文共 629 字,大约阅读时间需要 2 分钟。

确定好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>
<li></li>
</ul>
<p><span>这是美女</span></p>
</body>
</html>

转载于:https://www.cnblogs.com/xiaoxiaoyao/p/7659392.html

你可能感兴趣的文章
[LeetCode]Letter Combinations of a Phone Number
查看>>
数据结构中的基本排序算法总结
查看>>
np一些基本操作1
查看>>
面试真题-----hashMap原理
查看>>
js阻止事件冒泡 return false / e.stopPropagation() /e.preventDefault()
查看>>
CSS伪类使用
查看>>
哈佛成功金句
查看>>
iview Table表格单选框互斥
查看>>
leetcode278
查看>>
CodeForces-771D-Bear and Company
查看>>
PAT 1032 Sharing
查看>>
Extjs设置或获取cookie
查看>>
CC2541蓝牙BLE4.0主从透传工程
查看>>
iOS OC中block使用
查看>>
python之路--操作系统介绍,进程的创建
查看>>
markdown语法小结
查看>>
Java Gui 设计模式中的事件监听
查看>>
JavaSE-final关键字
查看>>
python自动化开发-1
查看>>
Remote远程特性的使用
查看>>