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


height is a property in CSS used to determine the height of a block.

width is a property in CSS used to determine the width of a block.


How to use


Example

HTML

<h1>Hello<h1>






CSS

h1 {
  height: 50px;
  width: 100px;
  background: lightcoral;
}






Result

Hello

 

Experience


Let's try setting up for Height:

Hello



Read more
On This Page