CSS Property Value How to - border: medium ridge red;








Question

We would like to know how to border: medium ridge red;.

Answer


<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
#place01 {<!--from w w  w.j  a va2s.co  m-->
  border: medium ridge red;
  width: 200px;
  height: 300px;
}
</style>
</head>
<body>
  <div id="place01"></div>
</body>
</html>

The code above is rendered as follows: