Home
html

Tech (Basic HTML & CSS) :

Html : like document

Css : like a tools for decorate the document to be more colourfull.

When we create Html and Css we have to link them together by using this link :

Basic Html :

Basic Css :

html


Css Element Positioning

Displays : Set distant around HTML

Block : Cover all area.

Inline : Allow other tag sit biside and limit area.

display: block; / display: inline;

Margin: Gap between each box

margin-top, margin-right, margin-bottom, margin-bottom All margin at Once >> margin: 10px 20px 30px 40px; *follow clockwise top right bottom left.

Border: The border-style to display

border: border: 2px solid black;

Padding: Space around and element's content.

padding-top, padding-right, padding-bottom, padding-left set all at once >> padding: 10px 20px 30px 40px; (clockwise top right bottom left)

Float: property specifies how an element should float on the website. float: left; / float: right;

*TOP