Is there a way to apply CSS to half of a character in a text? Yes, it is possible. Half the letter being transparent and half is visible prominent.
All you need to do is to add a class on the text you want to apply CSS and the rest is taken care of. The accessibility of the main text is preserved with screen readers for the blind or visually impaired.
Just apply the class .halfStyle to each element which contains the character you want to be half-styled.
For example, see the below code.
HTML:
<span class="halfStyle" data-content="A">A</span> <span class="halfStyle" data-content="B">B</span> <span class="halfStyle" data-content="C">C</span> <span class="halfStyle" data-content="D">D</span>
Read Also: HTML5 placeholder color with CSS
CSS:
.halfStyle {
position:relative;
font-size:80px;
display:inline-block;
color: black;
white-space: pre;
overflow:hidden;
}
.halfStyle:before {
display:block;
position:absolute;
z-index:1;
top:0;
left:0;
content: attr(data-content);
width: 50%;
overflow:hidden;
color: blue;
}
For each span element containing the each character, create a data attribute i.e. data-content=”A” etc. and on the pseudo element use content: attr(data-content);
So, the .halfStyle:before class will be more dynamic and you no need to hard code it for each instance.
Note: Every browser calculates the .5em value differently.
Battery coating is the process of applying uniform layers of active materials—such as cathode and…
Let’s face it. Tech buzzwords get thrown around a lot—especially when it comes to how…
In today’s digital world, the boundaries between technology, finance, and innovation are rapidly disappearing. Businesses…
Backyard gatherings like BBQs, family reunions, and garden parties are an exciting way to enjoy…
Marketers are always on the lookout for more effective ways to reach their target audiences.…
Does your phone control your mind more than you control your phone? Modern life exploits…