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/Borders with rounded corner...

20 lines
689 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>borders with rounded corners</title>
<style type="text/css">
body { font: 8pt Verdana; padding: 2px; }
p { padding: 2px; background-color: pink; }
</style>
</head>
<body>
<p style="border: 4px solid; -moz-border-radius: 12px;">
Love is like the sun coming out of the clouds and warming your soul.</p>
<p style="border: 8px outset; -moz-border-radius: 6px;">
One's first love is always perfect until one meets one's second love. Elizabeth Aston</p>
<p style="border: 8px dashed; -moz-border-radius: 10px;">
Fall not in love, therefore; it will stick to your face. National Lampoon, "Deteriorata"</p>
</body>
</html>