Forum Moderators: not2easy
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 3.2//EN">
<html>
<head>
<title></title>
<style type="text/css">
.button {
display: inline-block;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
background-color: #efefef;
border: 1px solid #c2c2c2;
padding: 20px;
}
.square {
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
height: 300px;
width: 300px;
background-color: #efefef;
border: 1px solid #c2c2c2;
}
</style>
</head>
<body>
<div class="square">Area</div>
<div class="button">Button</div>
</body>
</html>
I heard about them back in olden times but never saw one in practice.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title></title>
<style type="text/css">
.button {
display: inline-block;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
background-color: #efefef;
border: 1px solid #c2c2c2;
padding: 20px;
}
.square {
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
height: 300px;
width: 300px;
background-color: #efefef;
border: 1px solid #c2c2c2;
}
</style>
</head>
<body>
<div class="square">Area</div>
<div class="button">Button</div>
</body>
</html>