博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
html伪元素before占用高度,使用before伪元素出现的问题?
阅读量:5251 次
发布时间:2019-06-14

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

bVrogc

before,after会占据元素里边的空间,我一直以为是占据外边的空间。

如果不用nowrap元素就会换行是为什么?

为什么设置inline-block不会包含整个标签了?

怎样让他全部都包含到?

伪元素为什么用不了百分比设置高度,宽度却可以用百分比?

考虑到自适应手机端这样做是不是最好的选择?

哈哈哈啊哈哈哈哈哈哈哈哈

.column_05,.column_06{

text-align: center;

}

.column_05 .til,.column_06 .til{

display: inline-block;

position: relative;

text-align: center;

font-size: 2.4rem;

color: #16003a;

margin: 20px auto;

line-height: 25px;

text-align: center;

white-space: nowrap;

}

.column_05 .til:before,.column_06 .til:before{

content: "";

display: inline-block;

width: 10%;

height: 20px;

margin-left: 5%;

background: url(../images/title_before.png) no-repeat;

background-size: contain;

}

.column_05 .til:after,.column_06 .til:after{

content: "";

margin-right: 5%;

display: inline-block;

width: 10%;

height: 20px;

background: url(../images/title_after.png) no-repeat;

background-size: contain;

}

转载地址:http://szoav.baihongyu.com/

你可能感兴趣的文章
PS 滤镜— — sparkle 效果
查看>>
网站产品设计
查看>>
代理ARP
查看>>
go 学习笔记(4) ---项目结构
查看>>
java中静态代码块的用法 static用法详解
查看>>
Java线程面试题
查看>>
Paper Reading: Relation Networks for Object Detection
查看>>
day22 01 初识面向对象----简单的人狗大战小游戏
查看>>
mybatis源代码分析:深入了解mybatis延迟加载机制
查看>>
Flask三剑客
查看>>
Hibernate-缓存
查看>>
【BZOJ4516】生成魔咒(后缀自动机)
查看>>
提高PHP性能的10条建议
查看>>
svn“Previous operation has not finished; run 'cleanup' if it was interrupted“报错的解决方法...
查看>>
熟用TableView
查看>>
Java大数——a^b + b^a
查看>>
poj 3164 最小树形图(朱刘算法)
查看>>
服务器内存泄露 , 重启后恢复问题解决方案
查看>>
android一些细节问题
查看>>
KDESVN中commit时出现containing working copy admin area is missing错误提示
查看>>