From 328710238e230c83b229842cfb2d280d58b14eef Mon Sep 17 00:00:00 2001 From: Travis Benfield Date: Wed, 19 Dec 2018 09:18:32 -0500 Subject: [PATCH] General formatting (#33042) --- guide/english/css/borders/index.md | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/guide/english/css/borders/index.md b/guide/english/css/borders/index.md index 5450fb8216..5ebaef6ded 100644 --- a/guide/english/css/borders/index.md +++ b/guide/english/css/borders/index.md @@ -56,10 +56,7 @@ Or they can all be styled at once: The border property allows you to select each side of the element in one declaration in the following order: top, bottom, left, right. ### Border Width - -To alter the thickness of your border use the `border-width` property. You may use key terms or exact values to define the border width. _Note: You must -define a border-style for the border to show up._ The width can be set as a specific size (in px, pt, em, rem etc) or by using one of the three pre-defined -values: thin, medium, or thick. +To alter the thickness of your border, use the `border-width` property. You may use key terms or exact values to define the border width. _Note: You must define a border-style for the border to show up._ The width can be set as a specific size (in px, pt, em, rem etc) or by using one of the three pre-defined values: `thin`, `medium`, or `thick`. Example: ```css @@ -80,9 +77,7 @@ p { ``` ### Border Color - -Now for the creative aspect of CSS Borders! With the use of the `border-color` property, you will be able to create customized borders to fit the flow and layout -of your website. Border colors can be any color defined by RGB, hexadecimal, or key terms. Below is an example of each of these types. +Now for the creative aspect of CSS Borders! With the use of the `border-color` property, you will be able to create customized borders to fit the flow and layout of your website. Border colors can be any color defined by RGB, hexadecimal, or key terms. Below is an example of each of these types. Example: ```css