CSS | Propiedad border-bottom-with

La propiedad border-bottom-width en CSS se usa para establecer un ancho específico en el borde inferior de un elemento. La propiedad border-bottom-style o border-style se usa para el elemento antes de usar la propiedad border-bottom-width.

Sintaxis:

border-bottom-width: length|thin|medium|thick|initial|inherit;

Valores de propiedad: los valores de propiedad border-bottom-width se enumeran a continuación:

  • fino: Se utiliza para fijar el borde fino del fondo.
  • mediano: se utiliza para establecer un borde inferior de tamaño mediano. Es el valor predeterminado.
  • grueso: se utiliza para establecer un borde inferior grueso.
  • longitud: Se utiliza para establecer el ancho del borde. No toma valor negativo.

Ejemplo:

<!DOCTYPE html>
<html>
    <head>
        <title>
            border-bottom-width property
        </title>
          
        <style>
            #thin {
                border-color: green;
                border-bottom-style: solid;
                border-bottom-width: thin;
            }
            #medium {
                border-color: green;
                border-bottom-style: solid;
                border-bottom-width: medium;
            }
            #thick {
                border-color: green;
                border-bottom-style: solid;
                border-bottom-width:thick;
            }
            #length {
                border-color: green;
                border-bottom-style: solid;
                border-bottom-width: 20px;
            }
        </style>
    </head>
      
    <body style = "text-align:center">
      
        <h1 style = "color:green">GeeksforGeeks</h1>
      
        <h3>border-bottom-width property</h3>
          
        <div id="thin">
            border-bottom-width: thin;
        </div><br><br>
          
        <div id="medium">
            border-bottom-width: medium;
        </div><br><br>
          
        <div id="thick">
            border-bottom-width: thick;
        </div><br><br>
          
        <div id="length">
            border-bottom-width: length;
        </div>
    </body>
</html>                                

Producción:

Navegadores compatibles: los navegadores compatibles con la propiedad border-bottom-width se enumeran a continuación:

  • Google Chrome 1.0
  • Internet Explorer 4.0
  • Firefox 1.0
  • Ópera 3.5
  • Safari 1.0

Publicación traducida automáticamente

Artículo escrito por suptotthitamajumdar y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *