How to change border of paragraph using CSS?

Answer

To change border of paragraph using CSS, you can set the border style property for the paragraph elements with the values like 1px solid, 2px solid #FF0000, 2px dashed rgb(20, 105, 201), etc.

CSS Code

The following is the typical CSS code to change border of paragraph in HTML page using tag name p.

Using solid border

p {
   border: 1px solid;
}

Using solid colored border

p {
   border: 2px solid #FF0000;
}

Using dashed colored border

p {
   border: 2px dashed rgb(20, 105, 201);
}

Examples

We shall go through some working examples on how to change border of paragraph using CSS. In the following examples, you may change the value of border and Run the code to visually observe the changes made to the Paragraph elements.

Example 1

This is an example on how to change border of paragraph using solid border.

You may edit the following code, and click on Run button.

Example 2

This is an example on how to change border of paragraph using solid colored border.

You may edit the following code, and click on Run button.

Example 3

This is an example on how to change border of paragraph using dashed colored border.

You may edit the following code, and click on Run button.