text-align does not work
I want the words "Home" and "Academic Qualification" to be put on the leftmost. To my knowledge, div and li tags are called block elements, which takes the full width. Then, I don't know why I cannot align the words "Home" and "Academic Qualification". I sincerely appreciate your help. Thanks
<style>
.listAlign355{
text-align: left;
background-color: blue;
}
li{
list-style-type: none;
text-align:left;
}
</style>
<body>
<header>
<p>I am John.</p>
<div class="listAlign355">
<ul>
<li>Home</li>
<li>Academic Qualification</li>
</ul>
</div>
</header>
</body>