Yahoo Italia Ricerca nel Web

Risultati di ricerca

  1. border-width: 0; border-color: <the same as 'color' property>. If these rules are the most specific ones applied to the borders of an element, then the borders won't be shown, either because of zero-width, or because of hidden / none style. So, at the first look, these three rules look equivalent.

  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. 24 giu 2013 · Guida CSS di base. Gestire il padding con i CSS. Creare spazi attorno agli elementi senza usare i margini. Cesare Lamanna Pubblicato il 24 giu 2013. Se nel CSS i margini servono a creare spazio intorno ad un box, il padding è utile per creare spazio intorno al contenuto del box.

  4. 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.

  5. 8 nov 2022 · Cos’è il margin? Uno sguardo all’uso degli elementi CSS. Il box model in CSS: padding vs margin. Fondamenti di HTML. Per capire come padding e margin incidano sulla formattazione e l’aspetto del vostro sito web, dovete innanzitutto acquisire alcune nozioni di base di HTML.

  6. 30 set 2007 · I use a main container div to wrap all my content and then add a maincontainer * {padding:0;margin:0;}. I think it ends up the same as the above code.

  7. 9 mag 2024 · For basic border removal, border: none or border: 0 are the best options. Employ box-sizing: border-box when you need precise control over element dimensions with padding and borders. Avoid overflow: hidden for border removal due to potential issues.