Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Pen highlighter effect in css

Tags:

I want to create a highlight effect that resembles a highlight made with a pen. i.e. it has wavy tops and bottoms and a rough start and end, like in this picture.

Highlighted pen effect

What's the best way to do this in CSS? Is there a way to do it without using background images? Also so that it works will line wraps.

Ideally the solution would take HTML like the below and make it look like the image.

<p>   <span class='green-highlight>So write with a combination of short, medium, and long sentences. Create a sound that pleases the reader's ear. </span>   <span class='pink-highlight'>Don't just write words. </span>   <span class='yellow-highlight'>Write music. </span </p> 
like image 483
chrisb Avatar asked Oct 31 '15 12:10

chrisb


People also ask

How do I add a highlight effect in CSS?

How Do I Highlight Text In CSS? To Highlight text in HTML you have to use an inline element such as the <span> element and apply a specific background style on it. This will create the highlighting effect, which you can tweak in many different ways to create different looks.

How do I mark text in CSS?

The <mark> tag defines text that has relevance and is not intended to be used to merely apply highlighter styling. If you wish to style your text to appear highlighted, instead, use a <span> tag with the proper CSS.

How do you change highlighter color in CSS?

The Basics. It's pretty simple. To change the color of the highlighted-text, simply target the ::selection selector and then define the color of the background property.

How do you use highlighter in HTML?

Highlight using the HTML5 <mark> tag If you are working on an HTML5 page, the <mark> tag can quickly highlight text. Below is an example of the how to use the mark tag and its result. If your browser supports the <mark> tag, "highlighted text" should have a yellow background.


2 Answers

for a hyper realistic pen highlighter! Play with the background gradients for the intensity and with text-shadow to give it a washed effect.

enter image description here

span {     padding: 0.6em 13.7px;     line-height: 1.8em;     font-size: 23px;     font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial; } span.highlight { font-weight: bolder; background: linear-gradient(104deg, rgba(130, 255, 173,0) 0.9%, rgba(130, 255, 173,1.25) 2.4%, rgba(130, 255, 173,0.5) 5.8%, rgba(130, 255, 173,0.1) 93%, rgba(130, 255, 173,0.7) 96%, rgba(130, 255, 1732,0) 98%), linear-gradient(183deg, rgba(130, 255, 173,0) 0%, rgba(130, 255, 173,0.3) 7.9%, rgba(130, 255, 173,0) 15%); padding: 0.6em 13.7px; -webkit-box-decoration-break: clone; margin: 0; border-radius: 7.5px; text-shadow: -12px 12px 9.8px rgba(130, 255, 173,0.7), 21px -18.1px 7.3px rgba(255, 255, 255,1), -18.1px -27.3px 30px rgba(255, 255, 255,1); }
<span class="highlight">Lorem Ipsum is simply dummy text of the printing and</span> <span>typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled <span class="highlight">it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was<span>
like image 132
Matt Pi Avatar answered Oct 05 '22 23:10

Matt Pi


I was looking for the best possible effect with pure CSS and found the one that Basecamp uses quite compelling. There was still room for improvement though.

Here is my improved version:

screenshot of highlighted text

And here is the code:

mark {   margin: 0 -0.4em;   padding: 0.1em 0.4em;   border-radius: 0.8em 0.3em;   background: transparent;   background-image: linear-gradient(     to right,     rgba(255, 225, 0, 0.1),     rgba(255, 225, 0, 0.7) 4%,     rgba(255, 225, 0, 0.3)   );   -webkit-box-decoration-break: clone;   box-decoration-break: clone; }
Inside this text some words <mark>are highlighted</mark> and some aren’t.

If you are interested in how this works:

I wrote a tutorial about how the marker pen highlighter effect is achieved.

like image 21
Max Hoffmann Avatar answered Oct 06 '22 01:10

Max Hoffmann