^^css Cascading style sheets

 

Border

border: 5px solid red;

border: 5px solid;

The border property is a shorthand property for:

If border-color is omitted, the color applied will be the color of the text.

All CSS Border Properties

border:none  or  border:0

they are equivalent in rendering, pointing to different shortcuts:

border: 0;
 short for 
border-width: 0;
border: none;
 
border-style: none;

ref: stackoverflow

Text, font

Font-size

[ xx-small | x-small | small | medium | large | x-large | xx-large ]

text-decoration-line Property w3schools

es text-decoration-line: overline;

luglio2019  l'ho usata per i vettori, es

span.vt {text-decoration-line: overline;}

 

Colors names

https://www.rapidtables.com/web/css/css-color.html


I seguenti cmd sembrano inseribili in ogni tag.

 background-color: #FF00FF;


table  ix HTML table, CSS table properties.