How to set a dotted border in html

How to set a dotted border in html

Use CSS styles and HTML tag elements

In order to add dotted borders to different HTML tags, we select several commonly used tags to align and set the dotted border effect.

1. Commonly used tags in HTML

p tag

span

ul li

table tr td

2. Examples of CSS property words used

border

width

height

3. Key points of implementing dotted lines with CSS

border is a border attribute. If you want to achieve an object border effect, you need to set the border width, border color, and border style (solid line or dotted line)

border:1px dashed #F00 This sets the border style width to 1px, dotted line, and the dotted line is red.

4. Example description

We set the same width, height and border effect for the above labels.

5. Complete HTML code:

  1. <!DOCTYPE html> <html>
  2. <head> <meta charset="utf-8" />
  3. <title>html border dotted line demonstration www.pcss5.com</title> <style>
  4. .bor{border:1px dashed #F00;width:300px;height:60px;margin-top:10px} span{display:block}/*css comment: let span form a block*/
  5. </style> </head>
  6. <body> <p class="bor">p box</p>
  7. <span class="bor">span box</span> <ul class="bor">
  8. <li>ul li list</li> <li>ul li list</li>
  9. </ul> <table class="bor">
  10. <tr> <td>Table</td>
  11. <td>Table 2</td> </tr>
  12. <tr> <td>Data</td>
  13. <td>Data 2</td> </tr>
  14. </table> </body>
  15. </html>

The above example sets the same style for different tags in HTML, including the same border dashed line.

6. Browser effect screenshots

Screenshot of setting border dashed line effect for different tags in html

<<:  Understanding and example code of Vue default slot

>>:  CSS makes the child container exceed the parent element (the child container floats in the parent container)

Recommend

jQuery plugin to achieve carousel effect

A jQuery plugin every day - jQuery plugin to impl...

Discuss the application of mixin in Vue

Mixins provide a very flexible way to distribute ...

Reduce memory and CPU usage by optimizing web pages

Some web pages may not look large but may be very ...

Does Mysql ALTER TABLE lock the table when adding fields?

Table of contents Before MySQL 5.6 After MySQL 5....

CSS3 transition to implement notification message carousel

Vue version, copy it to the file and use it <t...

CSS3 to achieve simple white cloud floating background effect

This is a very simple pure CSS3 white cloud float...

A brief introduction to MySQL InnoDB ReplicaSet

Table of contents 01 Introduction to InnoDB Repli...

Implementing a distributed lock using MySQL

introduce In a distributed system, distributed lo...

MySQL 5.7.21 installation and password configuration tutorial

MySQL5.7.21 installation and password setting tut...