Home Web Front-end CSS Tutorial How to set css dotted border

How to set css dotted border

Apr 25, 2024 pm 06:27 PM
css

To set a dotted border in CSS, use the border-style: dotted; attribute. Additionally, dash spacing and size can be adjusted via the border-spacing and border-width properties.

How to set css dotted border

How to set a dotted border in CSS

Setting a dotted border in CSS is very simple, just useborder-style Attributes are enough.

Grammar:

1

border-style: dotted;

Copy after login

Example:

1

2

3

#element {

  border: 1px dotted black;

}

Copy after login

Detailed description:

## The
  • #dotted value sets the border to a dotted line.
  • border Properties are used to set the style, width and color of the border.
  • 1px Specifies the width of the border to be 1 pixel.
  • black Specifies the border color to black.

Other dashed line styles:

Other dashed line styles are also available in CSS, including:

  • dashed: dash
  • solid: solid line (default)
  • double: double line
  • groove : 3D inner ridge
  • ridge: 3D outer ridge
  • inset: 3D inner ridge (inner shade)
  • outset: 3D outer ridge (outer shadow)

Change dash spacing:

can be used

The border-spacing property changes the spacing between dashed lines:

1

2

3

4

#element {

  border-style: dotted;

  border-spacing: 5px;

}

Copy after login

Changes the dashed line size:

You can use the

border-width property to change Dashed line size:

1

2

3

4

#element {

  border-style: dotted;

  border-width: 3px;

}

Copy after login

The above is the detailed content of How to set css dotted border. For more information, please follow other related articles on the PHP Chinese website!

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

Hot Article Tags

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

What does placeholder mean in vue What does placeholder mean in vue May 07, 2024 am 09:57 AM

What does placeholder mean in vue

How to write spaces in vue How to write spaces in vue Apr 30, 2024 am 05:42 AM

How to write spaces in vue

How to get dom in vue How to get dom in vue Apr 30, 2024 am 05:36 AM

How to get dom in vue

What does span mean in js What does span mean in js May 06, 2024 am 11:42 AM

What does span mean in js

What does rem mean in js What does rem mean in js May 06, 2024 am 11:30 AM

What does rem mean in js

How to introduce images into vue How to introduce images into vue May 02, 2024 pm 10:48 PM

How to introduce images into vue

What is the function of span tag What is the function of span tag Apr 30, 2024 pm 01:54 PM

What is the function of span tag

What language is the browser plug-in written in? What language is the browser plug-in written in? May 08, 2024 pm 09:36 PM

What language is the browser plug-in written in?

See all articles