hi, I started learn how to use html and css and I need help now.
I want to have small space between them, and I want them to stick to the right side.
How do I do that?!?!
Tnx for anyone who will try to help me !
I want to have small space between them, and I want them to stick to the right side.
How do I do that?!?!
HTML:
<html>
<head>
<title>epicFooF</title>
<style type="text/css">
body {
background-color: #00cacc;
}
.menu li {
list-style-type: none;
float: left;
width: 20%;
position: relative;
text-align: right;
font-family: "Trebuchet MS";
font-size: 30px;
box-sizing: border-box;
}
.menu li {
color: white;
}
</style>
</head>
<body>
<div class="container">
<ul class="menu">
<li><a href="">Home</li>
<li><a href="">About</li>
<li><a href="">Portfolio</li>
<li><a href="">Pricing</li>
<li><a href="">Contact</li>
</ul>
</div>
Tnx for anyone who will try to help me !
Last edited:
