I've been challenged with this rather silly idea.
So can I replace all "i" occurrences with Blabla[span class=superI]i[/span]rest
: )
My idea is adding an extra (red) i "behind" the real i, and clipping the top off the real i.
Is this even possible ?
There are two ways to change the color of the bullet:Using an extra markup tag. Using Css style ::before selector.
Another solution http://jsbin.com/urOtixog/1/edit
This font-size can be changed.
@Fiskolin It is possible ... and quite easy.
<p>th<span class="i">i</span>s</p>
CSS
p {
font-size: 165px;
}
.i {
color: red;
position: relative;
}
.i:before {
content: "ı";
position: absolute;
color: black;
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With