HTML Element Style How to - Create a tab like header








Question

We would like to know how to create a tab like header.

Answer


<!DOCTYPE html>
<html>
<head>
<style>
* {<!-- w w  w . j a  v  a2s  . c om-->
  padding: 0;
  margin: 0;
}

#wrapper {
  width: 600px;
  padding: 10px;
  margin: 10px;
}


h1, #content-container {
  border: 1px solid rgb(0, 0, 0);
}

h1 {
  display: inline-block;
  position: relative;
  top: 1px; /* Offset one pixel to the bottom */
  border-bottom-color: white;
}
</style>

</head>
<body>
  <div id="wrapper">
    <h1>HEADER</h1>
    <div id="content-container">Content</div>
  </div>
</body>
</html>

The code above is rendered as follows: