Better choice than... text-decoration: underline The descendants do not cut the underline. The machine is implemented as text-decoration-skip-ink: auto but it has less control over the underline.
HTML CODE:
<p class="pretty-text-underline">
Pretty text underline without clipping descending letters.
</p>
CSS CODE:
.pretty-text-underline {
font-family: Arial, sans-serif;
display: inline;
font-size: 18px;
text-shadow: 1px 1px 0 #f5f6f9, -1px 1px 0 #f5f6f9, -1px -1px 0 #f5f6f9, 1px -1px 0 #f5f6f9;
background-image: linear-gradient(90deg, currentColor 100%, transparent 100%);
background-position: 0 0.98em;
background-repeat: repeat-x;
background-size: 1px 1px;
}
.pretty-text-underline::-moz-selection {
background-color: rgba(0, 150, 255, 0.3);
text-shadow: none;
}
.pretty-text-underline::selection {
background-color: rgba(0, 150, 255, 0.3);
text-shadow: none;
}
Description
- text-shadow: ... Has 4 offset values, covering the 4x 4 px area to ensure that the underline has a "thick" shadow that covers the offspring's underlined line. Use a color that matches the background. For larger fonts, use a larger font px size.
- background-image: linear-gradient(...)currentColor Create a 90 degree gradient using the current text color ( ).
- background-* The property sets the size of the gradient to 1x1px and repeats along the x axis.
- ::selection The pseudo selector ensures that text shadows do not interfere with text selection.
Post your comments / questions
Recent Article
- Your system's memory configuration has changed since it entered hibernation.
- Save image to client browser using jQuery?
- Get filename of image jQuery?
- How to get the image src using JavaScript?
- System.Net.Http.Formatting, Version=5.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' which has a higher version than referenced assembly 'System.Net.Http.Formatting' with identity 'System.Net.Http.Formatting, Version=4.0.0.0
- Cordova Android build error "Cannot read property 'length' of undefined". An error occurred while running subprocess cordova.
- ERROR in The Angular Compiler requires TypeScript >=3.9.2 and <4.0.0 but 3.8.3 was found instead
- Code ENOLOCAL Could not install from "android" as it does not contain a package.json file.
Related Article