Page Widget How to - Use nested div to create card like layout








Question

We would like to know how to use nested div to create card like layout.

Answer


<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
.main {<!--from w  w  w  . j  ava 2s. c o  m-->
  height: 250px;
  width: 300px;
  border: 1px solid #99999A;
}

.conmain {
  padding: 0.7em 0.4em 0.2em 0.4em;
}

.conmain h1 {
  border-bottom: 1px solid #99999a;
  line-height: 30px;
  margin: 0;
  font-size: 20px;
}
</style>
</head>
<body>
  <div class="main">
    <div class="conmain">
      <h1>Title</h1>
    </div>
  </div>
</body>
</html>

The code above is rendered as follows: