Common CSS dotted line example tutorials

零下一度
Release: 2017-06-16 13:53:42
Original
2605 people have browsed it

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:

My four sides are black dotted borders

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:

My left side is a black dotted border

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:

My right side is a black dotted border

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:

i The top edge is a black dotted border

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:

My bottom is Black dotted border

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:

My right border has no border and the other three sides are black dotted border examples

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:





CSS 虚线 DIVCSS5实例说明<title>m.sbmmt.com


www.divcss5.com css虚线实例实例
我四边为虚线边框

我的左边为黑色虚线边框

我的右边为黑色虚线边框

我的上边为黑色虚线边框

我的下边为黑色虚线边框

我的右边边框无边线而其它三边为黑色虚线边框实例
Copy after login

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:

CSS 虚线下划线 DIVCSS5实例说明
欢迎到CSS教程网的m.sbmmt.com- divcss5学习CSS
Copy after login

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!

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