Inline Block Level Element
Inline Block Level Element
}
.ie
{
border: 4px solid green;
width: 200px;
height:100px;
background-color: aqua;
font-size: 20px;
display: inline;
}
.ib
{
border: 4px solid green;
width: 200px;
height:100px;
background-color: aqua;
font-size: 20px;
display: inline-block;
}
</style>
</head>
<body>
<h1>Block Level Element </h1>
<div class="ble">
block Level
</div>
<h1> Inline Element</h1>
<div class="ie">
INLINE Element
</div>
<h1> Inline Block level Element</h1>
<div class="ib">
INLINE BLOCK Element
</div>
</body>
</html>
<p>paragraph</p>
<p>heading</p>
</div>
<h1> I Want Change inline Element to block Element</h1>
<div class="itb">
<i class="ex1">Italic</i>
<span class="ex 1">span </span>
</div>
</body>
</html>