I've been looking around all over the posts and see lots of discussions similar to mine but no exact answer unfortunately. So let me describe the case and ask you why that happens, what is the reason for this weird behavior.
So, I have a very simple HTML page with a parent container and a list of unordered items ul which is set to width: 100% and consists of 4 li items each of which is set to width: 25%; I definitely do reset every possible layout property to zero, but in spite of that in the end of the day the four list elements are with total width that exceeds 100%. What is the reason which makes the browser render 4*25% != 100% in spite of all the resets I do???
Here's the code and thank you in advance for your answers.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Test</title>
</head>
<body style="margin: 0; padding: 0; border: 0;">
<div id="wrapper">
<header style="width: 960px;">
<nav>
<ul style="width: 100%; padding: 0 !important; margin: 0 !important; background-color: yellow; ">
<li style="width: 25%; border: 0 !important; background-color: #f00; display: inline-block; margin: 0 !important; padding: 0 !important;"><a href="#" id="active">Dashboard</a></li>
<li style="width: 25%; border: 0 !important; background-color: #0f0; display: inline-block; margin: 0 !important; padding: 0 !important;"><a href="#">Mobiel</a></li>
<li style="width: 25%; border: 0 !important; background-color: #00f; display: inline-block; margin: 0 !important; padding: 0 !important;"><a href="#">3</a></li>
<li style="width: 25%; border: 0 !important; background-color: #f0f; display: inline-block; margin: 0 !important; padding: 0 !important;"><a href="#">4</a></li>
</ul>
</nav>
</header>
</div>
</body>
</html>