You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
programming-examples/css/Div tag margin-top margin-b...

34 lines
930 B
HTML

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns='http://www.w3.org/1999/xhtml' xml:subLang='en'>
<head>
<title>Div Tag Margin Top Margin Bottom Margin Left Margin Right</title>
<style rel='stylesheet' type='text/css'>
body {
margin: 0;
padding: 0;
}
div {
width: 400px;
height: 250px;
background: pink;
border: 1px solid pink;
}
div#topbottom-rightleft1 {
margin-top: 20px;
margin-right: 8px;
margin-bottom: 20px;
margin-left: 8px;
}
div#topbottom-rightleft2 {
margin: 20px 8px;
}
</style>
</head>
<body>
<div id='topbottom-rightleft1'>Absence sharpens love, presence strengthens it. Thomas Fuller </div>
<div id='topbottom-rightleft2'>Absence sharpens love, presence strengthens it. Thomas Fuller </div>
</body>
</html>