Welcome ðŸŽ‰

logo

ReactLMS

Search
Light Mode
Contact Us

2 min to read

Contact us

No results for your search.
Sorry, an unexpected error occurred

Concept


border is a CSS property used to create a border around an element.


border has 3 properties (from left to right):


In addition, we can also set a separate border for a direction by using:


How to use


Example

HTML

<h1>Hello<h1>







CSS

h1 {
  border: 2px solid green;
}







Result

Hello


Experience


Hello



Read more
On This Page