Page is a not externally linkable
- Code, Content, and Presentation
-- CSS
---- border-radius in safari - am I going mad!


greencode - 11:58 pm on Dec 21, 2012 (gmt 0)


There we go then…


<!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>


Thread source:: http://www.webmasterworld.com/css/4529977.htm
Brought to you by WebmasterWorld: http://www.webmasterworld.com