^^CSS Cascading style sheets

 

  1. https://www.cssplay.co.uk/menu/cssplay-oh-so-simple-slideshow.html
  2.  
  3. https://www.webfx.com/blog/web-design/css_techniques_charting_data/
  4. https://www.webfx.com/blog/web-design/30_css_techniques_examples/
  5. https://www.webfx.com/blog/web-design/css-tip-2-structural-naming-convention-in-css/

 

Box Model

https://www.youtube.com/watch?v=KCWFaZJx_Ig CSS Box Model Made Simple: Learn Margin, Padding & Border

 

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.