DO YOU NEED A CONTENT WRITER FOR YOUR BUSINESS?

Your One-Stop Solution for All Content Needs! Click here for more!
Categories: Css3

Apply CSS to half of a character

Share

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.

You need to do the following things for applying CSS to half of a character:

  • Methods for styling half of a character or letter
  • Methods for styling part of a character with CSS/JavaScript
  • Methods for applying CSS to 50% of a character

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.

CSS Designer

Recent Posts

Why is SEO a non-negotiable part of modern marketing?

In a world where digital presence is paramount, the question isn't whether you should do…

10 hours ago

Innovations in Hair Care: Exploring Breakthroughs for Lasting Results

Over the years, people have experimented with various methods to maintain healthy and beautiful hair.…

1 day ago

How To Strengthen Your Brand-Building Efforts?

Your brand more than developing an attractive and creative logo and infectious motto. It's the…

2 days ago

How To Be Successful And Maximize Compensation In A Personal Injury Case

Introduction Are you someone who has suffered from a personal injury and want to file…

2 days ago

What Are The Biggest Challenges Of Working From Home?

Operating from home has emerged as one of the most popular ways of doing jobs…

3 days ago

Art As An Asset: Will NFT’s Help You Survive Hyperinflation?

If the consequences of our society’s ever-growing debt are what worries you, then it is…

5 days ago