The display property is used to prevent a line break of a list of items.
Syntax:
element {
display:inline-block;
}
<!DOCTYPE html>
<html>
<head>
<title>preventline break in list items</title>
<style>
li {
display:inline-block;
text-decoration:underline;
}
h1 {
color: #80006f;
}
h1, h2 {
text-align:center;
}
body {
width:70%;
}
</style>
</head>
<body>
<h1>Bajarangi Soft</h1>
<h2>display:inline-block;</h2>
<b>Subjects Of Computer :</b>
<ul>
<li>Computer Network</li>
<li>Operating System </li>
<li>Data Structure using C</li>
<li>Object Oriented Programming Concepts</li>
<li>Digital Electronics</li>
</ul>
</body>
</html>