Yahoo Italia Ricerca nel Web

Risultati di ricerca

  1. Using border:0 will save an infinitesimal amount of bandwidth on its own, but if you make every byte count, you will make your website faster. The CSS2 specs are here. These are extended in CSS3 but not in any way relevant to this. 'border' Value: [ <border-width> || <border-style> || <'border-top-color'> ] | inherit.

  2. Definition and Usage. An element's padding is the space between its content and its border. The padding property is a shorthand property for: padding-top. padding-right. padding-bottom. padding-left. Note: Padding creates extra space within an element, while margin creates extra space around an element.

  3. 29 mar 2013 · 1. Using *{margin:0;padding:0;} in your stylesheet will not affect performance and is helpful in tackling various formatting issues. Using a separate reset.css does have some performance issues, as you are forcing the user to requested one more file from the server.

  4. 10 lug 2014 · 4 Answers. Sorted by: 3. It's not about the margin nor padding, it's the border: 0 that hides the border. Add a rule for the table tds such as: td { border: 1px solid black; } to show td borders. The same applies to table tag.

  5. 24 giu 2013 · Sintassi ed esempi. selettore {padding-right: valore;} I valori possono essere rappresentati da: un valore numerico con unità di misura; un valore in percentuale. div {padding-right: 40px;} p {padding-right: 20%;} padding-bottom. Imposta l'ampiezza del padding sul lato inferiore di un elemento.

  6. 29 mag 2023 · CSS logical properties and values. Logical properties for margins, borders, and padding. The Logical Properties and Values specification defines flow-relative mappings for the various margin, border, and padding properties and their shorthands. In this guide, we take a look at these.

  7. 20 lug 2020 · Setting the number of pixels for the border property will determine the thickness of the "painted bricks" on the outside of our house. With this new knowledge we can design the perfect container element. We'll use margins, padding and borders. .container { margin: 20px 40px; padding: 30px; border: 2px solid #fff; box-sizing: border-box; }