CSS Property Value How to - Create a bubble like border








Question

We would like to know how to create a bubble like border.

Answer


<!DOCTYPE html>
<html>
<head>
<style>
.bubble {<!-- w w w.j  a v  a  2  s .  co  m-->
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #facf35;
    border: solid 14px #fff0cf;
}

</style>
</head>
<body>
  <div class="bubble"></div>
</body>
</html>

The code above is rendered as follows: