How to remove underline in css
How to remove underlines in css: You can use the text-decoration attribute, such as [text-decoration: none;]. The attribute value none means no text decoration.
The operating environment of this article: windows10 system, css 3, thinkpad t480 computer.
You can use the text-decoration attribute to cancel text underlining, which specifies the decorations added to the text, underline, overline, strikethrough, etc.
Basic syntax:
/*关键值*/ text-decoration: none; /*没有文本装饰*/ text-decoration: underline red; /*红色下划线*/ text-decoration: underline wavy red; /*红色波浪形下划线*/ /*全局值*/ text-decoration: inherit; text-decoration: initial; text-decoration: unset;
Attribute value:
- ##none Default. Text that defines the standard.
- #underline Defines a line under the text.
- #overline Defines a line on the text.
- #line-through Defines a line that passes under the text.
- #blink Define blinking text.
- #inherit Specifies that the value of the text-decoration attribute should be inherited from the parent element.
css video tutorial)
Code examples are as follows:<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>php中文网(php.cn)</title> <style> h1.under { text-decoration: underline; } h1.over { text-decoration: overline; } p.line { text-decoration: line-through; } p.blink { text-decoration: blink; } a.none { text-decoration: none; } p.underover { text-decoration: underline overline; } </style> </head> <body> <h1 class="under">下划线</h1> <p class="line">删除线</p> <p class="blink">闪烁效果,但浏览器不会显示</p> <h1 class="over">下划线</h1> <p>这是一个 <a class="none" href="#">链接</a>,默认情况下链接是有下划线的,这边我们移除它。</p> <p class="underover">上划线与下划线</p> </body> </html>
The above is the detailed content of How to remove underline in css. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Practical application cases of CSS drawing function In modern web design, CSS can not only be used for layout and style, but also for creating complex graphics and animations. May...

Cleverly implementing the short animation and jump after clicking the a tag, many times, we hope that after clicking the a tag, the page can first display a short loading event...

Introduction and use of encoded fonts In programming and web design, choosing the right font can greatly improve the readability and aesthetics of the code. recent,...

Discussion on the height of adaptive intermediate content in three-line layout In web layout, you often encounter the need to implement three-line layout and the intermediate content is highly variable...

What are the elements in CSS for? During the learning and using CSS, you may encounter some less common HTML elements, such as <...

How to use locally installed font files on web pages In web page development, sometimes we will encounter the situation where we need to use specific fonts installed on our computer...

How to customize the hover effect of merge rows in el-table? Using Element...

How to customize the el-table merge hover effect when using Element...
