我是多行垂直居中文字
我是多行垂直居中文字
我是多行垂直居中文字
如果要垂直居中的只有一行或几个文字,那它的制作最为简单,只要让文字的行高和容器的高度相同即可,比如:
p { height:30px; line-height:30px; width:100px; overflow:hidden; }
这段代码可以达到让文字在段落中垂直居中的效果。
效果:
<div style="background-color: #e5e5e5;height:100">
<p style="background-color: red;height:30px; line-height:30px; width:100px; overflow:hidden;">看看</p>
</div>
另一种方法和行高法很相似,它同样适合一行或几行文字垂直居中,原理就是利用padding将内容垂直居中,比如:
p { padding:20px 0; }
这段代码的效果和line-height法差不多。
效果:
垂直居中
效果代码:
<div style="background-color: #e5e5e5;height:100">
<p style="background-color: red;padding:20px 0;">垂直居中</p>
</div>
将容器设置为display:table,然后将子元素也就是要垂直居中显示的元素设置为display:table-cell,然后加上vertical-align:middle来实现。
html结构如下:
<div id="wrapper">
<div id="cell">
<p>垂直居中效果</p>
<p>垂直居中效果</p>
</div>
</div>
css代码:
#wrapper {display:table;width:300px;height:300px;background:#000;margin:0 auto;color:red;}
#cell{display:table-cell; vertical-align:middle;}
效果:
垂直居中效果
垂直居中效果
效果代码:
<div style="display:table;width:300px;height:300px;background:#000;margin:0 auto;color:red;">
<div style="display:table-cell; vertical-align:middle;">
<p>垂直居中效果</p>
<p>垂直居中效果</p>
</div>
</div>
css代码:
.center-vertical{
position: relative;
top:50%;
transform:translateY(-50%);
}
.center-horizontal{
position: relative;
left:50%;
transform:translateX(-50%);
}
效果:
垂直居中效果
垂直居中效果
效果代码:
<div id="" style="width: 300px;
height: 300px;
background: #000;
color: red;">
<div class="" style="position: relative;
top: 50%;
transform: translateY(-50%);">
<p class="">垂直居中效果</p>
<p class="">垂直居中效果</p>
</div>
</div>
html代码:
<div class="center">
<div class="text">
<p>我是多行文字</p>
<p>我是多行文字</p>
<p>我是多行文字</p>
</div>
</div>
css代码:
.center {
width: 300px;
height: 200px;
padding: 10px;
border: 1px solid #ccc;
background:#000;
color:#fff;
margin: 20px auto;
display: -webkit-box;
-webkit-box-orient: horizontal;
-webkit-box-pack: center;
-webkit-box-align: center;
display: -moz-box;
-moz-box-orient: horizontal;
-moz-box-pack: center;
-moz-box-align: center;
display: -o-box;
-o-box-orient: horizontal;
-o-box-pack: center;
-o-box-align: center;
display: -ms-box;
-ms-box-orient: horizontal;
-ms-box-pack: center;
-ms-box-align: center;
display: box;
box-orient: horizontal;
box-pack: center;
box-align: center;
}
效果:
我是多行垂直居中文字
我是多行垂直居中文字
我是多行垂直居中文字
html代码:
<div class="flex">
<div>
<p>多行文字</p>
<p>多行文字</p>
</div>
</div>
css代码:
.flex{
/*flex 布局*/
display: flex;
/*实现垂直居中*/
align-items: center;
/*实现水平居中*/
justify-content: center;
text-align: justify;
width:200px;
height:200px;
background: #000;
margin:0 auto;
color:#fff;
}
效果:
多行文字
多行文字
Update your browser to view this website correctly. Update my browser now
开发华为鸿蒙HarmonyOS中的术语解释(按开头字母排序)1、Ability应用的重要组成部分,是应用所具备能力的抽象。Ability分为两种类型,FeatureAbility和ParticleAbility。2、AbilitySlice切片,是单个可视化界面及其交互逻辑的总和,是FeatureA
SpringBoot freemaker 自定义静态文件的位置解决打包的时候,把模板一起打包了,修改模板文件还得重新打包。自定义访问路径@ConfigurationpublicclassWebMvcAutoConfigurationextendsWebMvcConfigurationSupport{//配置文件自定义访问路径也可以通过启动参数修改@Value(,
升级spring 版本 quartz异常:DataSource name not set,问题从spring5.3.6升级到5.3.18版本后,启动项目quartz报错Causedby:org.springframework.beans.factory.BeanCreationException:Errorcreatingbeanwithname'schedulerFactoryBean
解决打包的时候,把模板一起打包了,修改模板文件还得重新打包。自定义访问路径@ConfigurationpublicclassWebMvcAutoConfigurationextendsWebMvcConfigurationSupport{//配置文件自定义访问路径也可以通过启动参数修改@Value(
SpringAOP统计接口执行时间,AOPSpring是java面向对象编程的主流框架,其主要思想有两个:反转控制(IOC)和面向切面(AOP)。日志中统计执行时间直接通过毫秒差计算@Around环绕//我这里通过注解监听@Pointcut("@annotation(***.***.ManagerLog)")pub,