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/Border-width thin medium th...

44 lines
1019 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>border-width thin medium thick</title>
<style type='text/css'>
body {
font: 16px verdana;
}
div#border-width {
overflow: hidden;
}
div#border-width div {
float: left;
border-style: solid;
border-color: red;
margin: 0 5px;
}
div#thin {
border-width: thin;
}
div#medium {
border-width: medium;
}
div#thick {
border-width: thick;
}
</style>
</head>
<body>
<p>
There's a lot to be said for self-delusionment<br>
when it comes to matters of the heart.<br><br>
Diane Frolov and Andrew Schneider
</p>
<div id='border-width'>
<div id='thin'>thin</div>
<div id='medium'>medium</div>
<div id='thick'>thick</div>
</div>
</body>
</html>