Home  >  Article  >  Web Front-end  >  Common CSS dotted line example tutorials

Common CSS dotted line example tutorials

零下一度
零下一度Original
2017-06-16 13:53:422681browse

DIV CSS dotted line tutorial includes CSS tutorials that explain DIV dotted line cases in various styles that often appear.

This section introduces common CSS dotted lines and DIV tutorials. CSS dotted lines, underlines, and list dotted lines are all handled.

1. CSS border dotted line

Here, the dotted line is controlled by the dotted border border of the border attribute. The css height (css height) and css width (css width) set below are 350 pixels for the convenience of viewing the demonstration. Other meanings.
One and four sides are dotted borders
border:1px dashed #000; black dotted border
Example:
CSS code: .divcss5{border:1px dashed #000; height :50px;width:350px}
Html code: 0fd95622ee3d539259ddb2dd2ba82a65My four sides are black dotted borders16b28748ea4df4d9c2150843fecfba68
The border abbreviation is set here to define the four-sided borders of the divcss5 selector as 1px black dotted border

2. Dotted line on the left:
CSS code: .divcss5-1{border-left:1px dashed #000; height:50px;width:350px }
Html code: 8dc7f26bbeb0b2d87fad8d7057caf02bMy left side is a black dotted border16b28748ea4df4d9c2150843fecfba68
Here I set a black dotted border on the left side

3. Dotted line on the right:
CSS code: .divcss5-2{border-right:1px dashed #000; height:50px;width:350px}
Html code: e1fb1ce5043ca7d6bb8d997f43d867f3My right side is a black dotted border16b28748ea4df4d9c2150843fecfba68
Here I set the right side to be a black dotted border

4. The top edge (upper edge) is a dotted line:
CSS code: .divcss5-3{border-top:1px dashed #000; height:50px;width:350px}
Html code: c01375deed980076d35367a1218bebb7i The top edge is a black dotted border16b28748ea4df4d9c2150843fecfba68
Here the top edge (upper edge) is set to a black dotted border

5. The bottom edge (lower edge) is a dotted line:
CSS code: .divcss5-4{border-bottom:1px dashed #000; height:50px;width:350px}
Html code: 8de9b8c1fb9699c8b3b7c3e5586585c1My bottom is Black dotted border16b28748ea4df4d9c2150843fecfba68
Here, the bottom edge (lower line) is set as a black dotted border

6. If any side is not dotted, and the other three sides are dotted
Add a right border that is not dotted but has no edge, and the other three sides are black dotted borders
CSS code: .divcss5-5{border:1px dashed #000;border-right:0; height:50px;width :350px}
Html code: c4a633836d3210c4eccf46c53c0aaf8dMy right border has no border and the other three sides are black dotted border examples16b28748ea4df4d9c2150843fecfba68
Here by setting the The four sides of the object are black 1px dotted borders, and then one side is set to 0. This is equivalent to setting the dotted border attributes of 3 sides, but pay attention to the order of setting the border attributes here.

The complete DIV+CSS code of the above example is as follows:

<!DOCTYPE html>
<html>
<head>
<meta charset="gb2312" />
<title>CSS 虚线 DIVCSS5实例说明<title>www.php.cn</title>
<style>
.divcss5{ border:1px dashed #000; height:50px; width:350px}
.divcss5-1{border-left:1px dashed #000; height:50px;width:350px}
.divcss5-2{border-right:1px dashed #000; height:50px;width:350px}
.divcss5-3{border-top:1px dashed #000; height:50px;width:350px}
.divcss5-4{border-bottom:1px dashed #000; height:50px;width:350px}
.divcss5-5{border:1px dashed #000; border-right:0;height:50px;width:350px}
/* www.divcss5.com实例 */
</style>
</head>
<body>
www.divcss5.com css虚线实例实例<br>
<div class="divcss5">我四边为虚线边框</div><br>
<div class="divcss5-1">我的左边为黑色虚线边框</div><br>
<div class="divcss5-2">我的右边为黑色虚线边框</div><br>
<div class="divcss5-3">我的上边为黑色虚线边框</div><br>
<div class="divcss5-4">我的下边为黑色虚线边框</div><br>
<div class="divcss5-5">我的右边边框无边线而其它三边为黑色虚线边框实例</div>
</body>
</html>

2. Hyperlink dotted line and underline

We often set the linked text content or Links have a dotted underline, or a dotted underline appears when the mouse is moved to the text with a link. How to achieve this? Here we will introduce you to the dotted underline of CSS hyperlinks.

1. Linked text has dotted underline
Here, the CSS style of the hyperlink a object is also controlled through the CSS border property.

Demonstration CSS code:
a{ border-bottom:1px dashed #111;}/* Here set the dotted underline to appear below the link text*/
a:hover{ border:0;} /* Here, set the dotted line not to appear when the mouse passes over the linked text */

Complete DIV CSS code:

<!DOCTYPE html><html><head><meta charset="gb2312" /><title>CSS 虚线下划线 DIVCSS5实例说明</title><style>a{ border-bottom:1px dashed #111;text-decoration:none;}a:hover{ border:0;}</style></head>
<body>欢迎到<a href="www.php.cn">CSS教程网</a>的www.php.cn- divcss5学习CSS</body></html>

Description: text-decoration:none; This is to remove the CSS underline ( The underline attribute that comes with hyperlinks by default)

The above is the detailed content of Common CSS dotted line example tutorials. For more information, please follow other related articles on the PHP Chinese website!

Statement:
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