--- title: border-top-style slug: Web/CSS/border-top-style translation_of: Web/CSS/border-top-style browser-compat: css.properties.border-top-style --- {{CSSRef}} La propriété **`border-top-style`** définit le style de ligne utilisé pour mettre en forme la bordure en haut d'une boîte. {{EmbedInteractiveExample("pages/css/border-top-style.html")}} > **Note :** La spécification ne définit pas la façon dont les bordures de différents styles se rejoignent dans les coins. ## Syntaxe ```css /* Valeurs avec un mot-clé */ border-top-style: none; border-top-style: hidden; border-top-style: dotted; border-top-style: dashed; border-top-style: solid; border-top-style: double; border-top-style: groove; border-top-style: ridge; border-top-style: inset; border-top-style: outset; /* Valeurs globales */ border-top-style: inherit; border-top-style: initial; border-top-style: revert; border-top-style: unset; ``` La propriété `border-top-style` se définit avec l'un des mots-clés utilisés par la propriété [`border-style`](/fr/docs/Web/CSS/border-style). ## Définition formelle {{CSSInfo}} ## Syntaxe formelle {{csssyntax}} ## Exemples ### HTML ```html
none | hidden | petits points | tirets |
solid | double | groove | ridge |
inset | outset |