Added a missing space and period in basic-css challenge files (#20480)

* Added missing space

* Added missing period in add-borders-around-your-elements.md

* Added missing space in adjust-the-padding-of-an-element.english.md
This commit is contained in:
Lauren Van Sloun
2018-10-29 11:13:45 -04:00
committed by Huyen Nguyen
parent b688afcf7d
commit c54896273b
3 changed files with 3 additions and 3 deletions

View File

@ -8,7 +8,7 @@ videoUrl: 'https://scrimba.com/c/c2MvnHZ'
## Description
<section id='description'>
CSS borders have properties like <code>style</code>, <code>color</code> and <code>width</code>
CSS borders have properties like <code>style</code>, <code>color</code> and <code>width</code>.
For example, if we wanted to create a red, 5 pixel border around an HTML element, we could use this class:
<blockquote>&#60;style&#62;<br>&nbsp;&nbsp;.thin-red-border {<br>&nbsp;&nbsp;&nbsp;&nbsp;border-color: red;<br>&nbsp;&nbsp;&nbsp;&nbsp;border-width: 5px;<br>&nbsp;&nbsp;&nbsp;&nbsp;border-style: solid;<br>&nbsp;&nbsp;}<br>&#60;/style&#62;</blockquote>
</section>