Código
<div class="container" margin: auto; > <div class="row"> <div class="col-lg-12 text-center"> <a href="dos.php" target="_parent" style='width:100px; height:100px; cursor:pointer; background-color:#e7e7e7; color: #000080;' class="btn btn-default boton" ><strong>Búsqueda </strong> <br> <strong>Ofic/</strong> <strong><br>Registro</strong> <br> <strong>Visitas </strong></a> <a href="ultimavisita.php" target="_parent" style='width:100px; height:100px; cursor:pointer; background-color:#e7e7e7; color: #000080; ' class="btn btn-default boton " > <strong>Última Visita </strong></a> <a href="regis.php" target="_parent" style='width:100px; height:100px; cursor:pointer; background-color:#e7e7e7; color: #000080;' class="btn btn-default boton" ><strong>Histórico</strong> <br> <strong>Visitas </strong> </a> <a href="exp.php" target="_parent" style='width:100px; height:100px; cursor:pointer; background-color:#e7e7e7; color: #000080;' class="btn btn-default boton" ><strong>Ficha</strong> <br> </a> <a href="fic.php" target="_parent" style='width:100px; height:100px; cursor:pointer; background-color:#e7e7e7; color: #000080 ' class="btn btn-default boton" ><strong> Insertar</strong> </a> <a href="fils.php" target="_parent" style='width:100px; height:100px; cursor:pointer; background-color:#e7e7e7; color: #000080;' class="btn btn-default boton" ><strong>Cartera </strong> </a> </div> </div> </div>
La primera pregunta es: Como es responsive design, cuando visualizo ese código en la web se ven los seis botones en línea (en una línea) y el espacio entre botón y botón se ve, y es suficiente. El tema es que al verlo en el móvil se ven tres botones arriba y tres debajo. Pero aunque sigue habiendo separación a la derecha de cada botón, entre el boton uno, en la primera fila sería por decirlo el 1,2,3 los botones 4,5,6 están pegados por debajo de los 1,2,3 y no hay manera de hacer el mismo espacio que hay a la derecha de cada botón pero también además abajo (en realidad sería el mismo espacio abajo, arriba, izquierda y derecha).
He intentado hacer un class y definirlo que era boton, y hacer un
Código
.boton { margin-bottom: 2px; }
Pero no va, y si pongo btn-block, en class, me pone todos los botones en una columna, y tampoco centrados
La segunda pregunta sería: Si en la web también quisiera que se vieran 3 arriba y tres abajo, cómo lo haría ¿con una tabla?
A ver si me podéis ayudar, muchas gracias por adelantado.