Dame un css y html de un boton azul redondeado
Aquí está el código HTML y CSS para un botón azul redondeado:
HTML:
<button class="btn">Haz clic aquí</button>
CSS:
.btn {
background-color: blue;
color: white;
border-radius: 20px;
padding: 10px 20px;
font-size: 16px;
border: none;
cursor: pointer;
}
.btn:hover {
background-color: darkblue;
}
Puedes ajustar el tamaño del botón y los colores según tus preferencias.
原文地址: https://www.cveoy.top/t/topic/ffTH 著作权归作者所有。请勿转载和采集!