CSS | Propiedad border-top-width

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

Valor por defecto: 

  • medio

Sintaxis:  

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

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

  • longitud: Se utiliza para establecer el ancho del borde. No toma valor negativo.
  • delgado: se utiliza para establecer el borde delgado en la parte superior del elemento.
  • medio: se utiliza para establecer un borde superior de tamaño medio. Es el valor predeterminado.
  • grueso: Se utiliza para establecer el borde superior grueso.
  • initial: se utiliza para establecer el ancho superior del borde en su valor predeterminado.
  • heredar: esta propiedad se hereda de su padre.

Ejemplo:  

html

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

Producción:  

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

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

Publicación traducida automáticamente

Artículo escrito por sheyakhare1999 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 *