In CSS, text is one of the most common things we deal with every day. With text, some text decoration is essential. This article will talk about two relatively new concepts of text decoration: Text-decoration Text decoration p { text-decoration: underline; } In the newer CSS Text Decoration Module Level 3 - text-decoration, in:
Here is a very good picture to help you understand quickly: CodePen Demo -- Text-decoration Demo text-decoration-line can be set at the same time An interesting point is that p { text-decoration-line: overline underline line-through; } We can get three lines: upper, middle and lower. Text-decoration can be transitioned and animated Every value of text-decoration can be transitioned and animated. If used properly, it can be very useful in places where the text emphasizes something. <p class="transition">Lorem ipsum dolor</p> .transition { text-decoration-line: underline; text-decoration-color: transparent; text-decoration-thickness: 0.1em; cursor: pointer; transition: .5s; &:hover { text-decoration-color: pink; text-decoration-thickness: 0.15em; color: pink; } } With another attribute Of course, the above example uses the transformation of CodePen Demo -- Text underline transition animation effect Separate text-decoration-color from color .color { text-decoration-style: wavy; cursor: pointer; transition: .5s; &:hover { color: transparent; text-decoration-color: pink; } } Interestingly, after doing this, we actually get a wavy line. If we add <p class="animation" data-content="Lorem ibsum dolor Lorem ibsum dolor">Lorem ibsum dolor</p> .animation { position: relative; text-decoration: none; overflow: hidden; cursor: pointer; line-height: 2; &::before { content: attr(data-content); position: absolute; top: 0; left: 0; color: transparent; white-space: nowrap; text-decoration-line: underline; text-decoration-style: wavy; text-decoration-color: #000; z-index: -1; } &:hover::before { animation: move 3s infinite linear; } } @keyframes move { 100% { transform: translate(-209px, 0); } } We use pseudo-elements to add a text that is longer than the text itself, and the color is transparent, but the color of the wavy line is set. Then, when hovering, the wavy line is displaced by moving CodePen Demo -- text-decoration Demo text-emphasis text emphasis Earlier, if we wanted to emphasize a few words, we might use more conventional text styles such as bold and italics : { font-weight: bold; // bold font-style: italic; // italic} Now, there is an interesting way to emphasize text - text-emphasis syntax text-emphasis includes Take a look at a simple Demo: <p> This is <span>Text-emphasis</span>. </p> p span{ text-emphasis: circle; } The effect of Of course, the default is black, we can add color after the circle: p span{ text-emphasis: circle #f00; } In addition to <p> ABCD E F GH I J KL <span class="emoji">M N</span> </p> .keyword { text-emphasis: circle #f00; } .word { text-emphasis: 'x' blue; } .emoji { text-emphasis: '😋'; } text-emphasis-position syntax In addition to being above the text, you can also change the position of the emphasis shape within a certain range, choosing to place it above or below the text using text This property accepts two parameters: top and bottom and left and right: .keyword { text-emphasis: circle #f00; } .word { text-emphasis: 'x' blue; text-position: over left; } .emoji { text-emphasis: '😋'; text-position: under left; } When the writing order of the text is horizontal, similar to p { writing-mode: vertical-rl; } .keyword { text-emphasis: circle #f00; } .word { text-emphasis: 'x' blue; text-position: over left; } .emoji { text-emphasis: '😋'; text-position: under right; } Use background to simulate underline In addition to The most common way is to use Take a look at a simple DEMO, using <p>Lorem ipsum dolor sit amet consectetur adipisicing elit. <a>Mollitia nostrum placeat consequatur deserunt velit ducimus possimus commodi temporibus debitis quam</a>, molestiae laboriosam sit repellendus sed sapiente quidem quod accusantium vero.</p> p { width: 600px; font-size: 24px; color: #666; } a { background: linear-gradient(90deg, #0cc, #0cc); background-size: 100% 3px; background-repeat: no-repeat; background-position: 100% 100%; color: #0cc; } Use Alternatively, use a { background: linear-gradient(90deg, #0cc 50%, transparent 50%, transparent 1px); background-size: 10px 2px; background-repeat: repeat-x; background-position: 100% 100%; } CodePen Demo -- Use background to simulate underline and dashed underline Of course, this is the most basic. By cleverly using the various properties of Cleverly change Here, by cleverly changing Let's take a look at a demo like this. The core code acts on the <p>Lorem ipsum dolor sit amet consectetur adipisicing elit. <a>Mollitia nostrum placeat consequatur deserunt velit ducimus possimus commodi temporibus debitis quam</a>, molestiae laboriosam sit repellendus sed sapiente quidem quod accusantium vero.</p> a { background: linear-gradient(90deg, #ff3c41, #fc0, #0ebeff); background-size: 0 3px; background-repeat: no-repeat; background-position: 0 100%; transition: 1s all; color: #0cc; } a:hover { background-size: 100% 3px; color: #000; } Although we set Take a look at the final effect: Since // Keep everything else the same, only change background-position from 0 100% to 100% 100% a { ... background-position: 100% 100%; ... } Let’s take a look at the effect. You can compare it with the animation above to see the specific differences: CodePen Demo -- background underline animation OK, if we use CSS code diagram. Note that the a { background: linear-gradient(90deg, #0cc, #0cc), linear-gradient(90deg, #ff3c41, #fc0, #8500d8); background-size: 100% 3px, 0 3px; background-repeat: no-repeat; background-position: 100% 100%, 0 100%; transition: 0.5s all; color: #0cc; } a:hover { background-size: 0 3px, 100% 3px; color: #000; } You can get such an effect. In fact, every time you hover, there are two underlines moving: CodePen Demo -- background underline animation at lastWell, this is the end of this article. I have introduced some interesting properties and animations of text decoration. I hope it will be helpful to you😃 More wonderful CSS technical articles are collected in my Github -- iCSS. They are continuously updated. Welcome to click a star to subscribe and collect. This is the end of this article about detailed explanation of CSS text decoration text-decoration & text-emphasis. For more relevant CSS text decoration content, please search 123WORDPRESS.COM’s previous articles or continue to browse the following related articles. I hope that everyone will support 123WORDPRESS.COM in the future! |
<<: Let's learn about MySQL database
>>: Summarize the User-Agent of popular browsers
This article mainly describes two kinds of underl...
In this blog, we will discuss ten performance set...
Effect demo.html <html> <head> <me...
Preface Since the most important data structure i...
Anyone who has a little knowledge of data operati...
1. Install MySQL: Use the following three command...
Copy code The code is as follows: <pre> <...
1. Background Use LDAP to centrally manage operat...
This article shares the specific code of JavaScri...
React Lifecycle Two pictures to help you understa...
Parent File import React, { useState } from '...
If you want the path following the domain name to...
Recently, I encountered a database with the follo...
Table of contents Mixins implementation Hook func...
Table of contents 1. Database constraints 1.1 Int...