Page Widget How to - Add border to block and inline element








Question

We would like to know how to add border to block and inline element.

Answer


<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
h1 {<!--from   w  w w .  ja  v a 2s  .c o  m-->
  border-bottom: 1px solid red;
}

span {
  border-bottom: 1px solid blue;
  display: inline-block;
  margin-bottom: -1px;
}
</style>
</head>
<body>
  <h1>
    <span>My Title Test</span>
  </h1>
</body>
</html>

The code above is rendered as follows: