HTML
<body>
<div class="menu_items">
<h1>My Heading</h1>
<nav>
<a>Item 1</a>
<a>Item 2</a>
<a>Item 3</a>
<a>Item 4</a>
</nav>
<div>
</body>
CSS
.menu_items nav a
{
display: inline;
margin-right: 10px;
text-align: right;
}
The positioning of the menu_items
is not moving to the right side as expected. What could be causing this issue?