Here是一个小提琴。
<p>foo <a class="infolink" href="#">bar</a> baz</p>
和/或
a.infolink::before { content: '?'; background: blue; color: white; width: 20ex; height: 20ex; }
“?”出现,但显然没有20 ex尺寸。为什么不呢?在Firefox和Chrome中测试过。
pxyaymoc1#
注意:默认情况下,::before和::after伪元素实际上是display: inline;。将显示值更改为inline-block,以使宽度和高度生效,同时保持内联格式上下文。
::before
::after
display: inline;
inline-block
a.infolink::before { content: '?'; display: inline-block; background: blue; color: white; width: 20px; height: 20px; }
http://jsfiddle.net/C7rSa/3/
bqujaahr2#
默认情况下,::before和::after伪元素是内联放置的,因此width和height不会生效。设置为display: inline-block和it should work。
width
height
display: inline-block
bd1hkmkf3#
如果容器或CSS**空白中有图像,请使用此选项:nowrap;**属性
body::before{ content:url(https://i.imgur.com/LJvMTyw.png); transform: scale(.3); }
50pmv0ei4#
如果将element设置为position: relative,将pseudo设置为position: absolute,则可以根据父元素的大小调整伪 width 和 height。
position: relative
position: absolute
div { position: relative; width:400px; height:200px; padding: 0; } div::before { position: absolute; width:100%; height: 100% }
yxyvkwin5#
对我来说,当我使用display: block时,它就工作了。
display: block
gr8qqesn6#
添加display:block;demo
display:block;
p > a.infolink::before { display:block; content:'?'; background: blue; color: white; width: 20ex; height: 20ex; border:1px solid #000; }
luaexgnf7#
我可以让它工作,但不使用宽度的百分比。像素工作正常
visibility: visible; content: "stuff"; min-width: 29px; width: 100%; float: left; position: relative; top: -15px; left: 0;
nwlqm0z18#
我知道这不能完全回答问题,但对我来说唯一有效的解决方案是使用font-size属性。
font-size
a.infolink::before { content: '?'; background: blue; color: white; font-size: 20ex; }
8条答案
按热度按时间pxyaymoc1#
注意:默认情况下,
::before
和::after
伪元素实际上是display: inline;
。将显示值更改为
inline-block
,以使宽度和高度生效,同时保持内联格式上下文。http://jsfiddle.net/C7rSa/3/
bqujaahr2#
默认情况下,
::before
和::after
伪元素是内联放置的,因此width
和height
不会生效。设置为
display: inline-block
和it should work。bd1hkmkf3#
如果容器或CSS**空白中有图像,请使用此选项:nowrap;**属性
50pmv0ei4#
如果将element设置为
position: relative
,将pseudo设置为position: absolute
,则可以根据父元素的大小调整伪 width 和 height。yxyvkwin5#
对我来说,当我使用
display: block
时,它就工作了。gr8qqesn6#
添加
display:block;
demo
luaexgnf7#
我可以让它工作,但不使用宽度的百分比。像素工作正常
nwlqm0z18#
我知道这不能完全回答问题,但对我来说唯一有效的解决方案是使用
font-size
属性。