Can the length of underline style be set in css?

WBOY
Release: 2021-11-29 18:45:08
Original
5540 people have browsed it

The underline length can be set in css by using the width and "border-bottom" attributes; you only need to add "text element" to the text element {width: underline length value; border-bottom: underline thickness solid underline color ;" style is enough.

Can the length of underline style be set in css?

The operating environment of this tutorial: Windows 7 system, CSS3&&HTML5 version, Dell G3 computer.

Can the length of the underline style in css be set?

Yes.

In CSS, you can set the underline of a text element by setting the lower border of the text element. You only need to set the width of the text element through the width element, that is, set the underline of the text element.

The example is as follows:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
    <style type="text/css">
    .token1 {
    width: 100px;
    border-bottom: 1px solid black;
}
    .token2 {
    width: 200px;
    border-bottom: 1px solid black;
}
        </style>
</head>
<body>
    <div class="token1">下划线</div>
    <div class="token2">下划线</div>
</body>
</html>
Copy after login

Output result:

Can the length of underline style be set in css?

(Learning video sharing: css video tutorial)

The above is the detailed content of Can the length of underline style be set in css?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
css
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
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!