-1
I’m creating a menu for a classified site, and I wanted to put a rounded border (border-Radius) on the 'publish advertisement' item, using css.
I leave my menu code here:
<nav class="menu" id="menu">
<img src="images/site.jpg" width="200px">
<a href="publicar" class="pub">Publicar anúncio</a>
<a href="login" class="regi">Login</a>
<a href="registo" class="log">Registar</a>
<a href="categorias">Categorias</a>
<a href="blog">Blog da equipa</a>
<a href="#">Home</a>
<a href="" class="icon" id="icon">
<i class="fa fa-bars"></i>
</a>
</nav>
Anyway, I can’t identify the 'publish advertisement' item in css.
And what is the difficulty?
– Pedro Roweder
have you looked at any documentation? https://developer.mozilla.org/en-US/docs/Web/CSS/border-radius
– Ricardo Pontual