My code looks like this:
<li style = "height: 250px;"> <p>Foo</p></li>
Despite my efforts, when I visit the website, the height doesn't seem to change. After inspecting the element in Chrome, I discovered that it's showing a different height:
<li style = "height: 180px;"> <p>Foo</p></li>
I've saved and uploaded the file correctly, cleared the cache by refreshing the page without cache and even tried with incognito mode. I also attempted using different browsers, but no matter what I do, it keeps overwriting the height value to 180px
!!
How can I successfully change the height back to 250px
? I'm at a loss here after trying everything, and nothing seems to work!!