How Can I Control the Appearance of Underlines Using CSS Gradients?

Barbara Streisand
Release: 2024-11-06 20:29:03
Original
321 people have browsed it

How Can I Control the Appearance of Underlines Using CSS Gradients?

How to Control the Appearance of Underlines

Underlines can be tailored to enhance visual appeal and readability. To manipulate the length and position of a text-decoration:underline, there is a simple yet effective technique involving the use of gradients:

.underline {
  background-image: linear-gradient(#5fca66 0 0);
  background-position: bottom center;
  background-size: 80% 2px;
  background-repeat: no-repeat;
  padding-bottom: 4px;
}
Copy after login

Position Adjustment:

  • To move the line, adjust the background-position property.
  • For instance, background-position: bottom left; aligns the line to the left of the text.

Length Adjustment:

  • To control the length, adjust the background-size property.
  • For example, background-size: 50% 1px; creates a shorter line.

Additional Customization:

  • Close to Text: padding-bottom: 0; brings the line closer to the text.
  • Far from Text: padding-bottom: 10px; increases the distance between the line and the text.
  • Different Colors: Customize the line color by modifying the background-image property, e.g., background-image: linear-gradient(red 0 0);.

The above is the detailed content of How Can I Control the Appearance of Underlines Using CSS Gradients?. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!