2
This is the HTML of this section:
home
#home.scroll
br
br
.container
.row
a.scroll href="#oquee"
.cir O que é
a.scroll href="#local"
.cir Local
a.scroll href="#convidado"
.cir Convidado
a.scroll href="#contato"
.cir Contato
a.scroll href="#inscricao"
.cir Inscrição
Good morning, I wonder how I could leave these circles next to each other, and centered on the page ? I have a landingpage to deliver on today’s date.
I already tried when applying display: inline;
but he makes the following mistake
this is the css I inserted:
.cir {
background-color:#135d62;
color:#fff;
width:120px;
height:120px;
line-height:120px;
vertical-align:middle;
text-align:center;
font-size: 18px;
border-radius:50%;
-moz-border-radius:50%;
-webkit-border-radius:50%;
display: inline;
}
How can I place each circle next to each other and then center ? Because I tried with Bootstrap’s Grid system but it is not centralized.
like this with the bootstrap:
html bootstrap
home
#home.scroll
br
br
.container
.row
.col-md-2
a.scroll href="#oquee"
.cir O que é
.col-md-2
a.scroll href="#local"
.cir Local
.col-md-2
a.scroll href="#convidado"
.cir Convidado
.col-md-2
a.scroll href="#contato"
.cir Contato
.col-md-2
a.scroll href="#inscricao"
.cir Inscrição
Thanks in advance for your attention.