Page Widget How to - Change bottom border color to turn off the border








Question

We would like to know how to change bottom border color to turn off the border.

Answer


<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
.block {<!--from  w ww .ja  v a  2 s  .  c om-->
  width: 150px;
  height: 150px;
  display: block;
  background-color: red;
  border: 5px solid #000000; //
  border-bottom: 0;
  border-bottom-width: 5px !important;
  border-bottom-color: white;
}
</style>
</head>
<body>
  <div class="block"></div>
</body>
</html>

The code above is rendered as follows: