width and height doesn't seem to work on :before pseudo-element
Solution 1:
Note: The ::before
and ::after
pseudo-elements are actually laid display: inline;
by default.
Change the display value to inline-block
for the width & height to take effect while maintaining inline formatting context.
a.infolink::before {
content: '?';
display: inline-block;
background: blue;
color: white;
width: 20px;
height: 20px;
}
http://jsfiddle.net/C7rSa/3/
Solution 2:
::before
and ::after
pseudo-elements are laid inline by default, so width
and height
won't take effect.
Set it to display: inline-block
and it should work.
Solution 3:
Use this if you have image in container or CSS white-space: nowrap; property
body::before{
content:url(https://i.imgur.com/LJvMTyw.png);
transform: scale(.3);
}