How to create a responsive tab with css and html
Creating a responsive tab with html and css
So we will create a tab with html and css. Tab will show at
the top of the page. We will add some shadow of its bottom border.
Here is the tab
Here is the code
<!DOCTYPE html>
<html>
<head>
<title></title>
<style type="text/css">
.tab
{
position :fixed ;
top:0;
left :0;
width:100%;
height: 40px;
border-bottom: 1px solid #ddd;
background: #fff;
margin: 0rem 0 1rem 0;
}
.inverse
{
background: #222;
}
</style>
</head>
<body>
<div class="tab inverse "></div>
</body>
</html>
Comments
Post a Comment