Results 81 - 100 of 726

border-top-right-radius

The border-top-right-radius CSS property sets the rounding of the top-right corner of the element. The rounding can be a circle or an ellipse, or if one of the value is 0 no rounding is done and the corner is square.
CSS CSS Borders CSS Property NeedsMobileBrowserCompatibility Reference

border-top-style

The border-top-style CSS property sets the line style of the top border of a box.
CSS CSS Borders CSS Property Reference

border-top-width

The border-top-width CSS property sets the width of the top border of a box.
CSS CSS Borders CSS Property Reference

border-width

The border-width property is a shorthand property for setting border-top-widthborder-right-widthborder-bottom-width and border-left-width of a box at the same place.
CSS CSS Borders CSS Property Reference

bottom

The bottom CSS property participates in specifying the position of positioned elements.
CSS CSS Positioning CSS Property Reference

break-after

The break-after CSS property describes the page, column, or region break behavior (in other words, how and whether to break) after the generated box. If there is no generated box, the property is ignored.
CSS CSS Fragmentation CSS Property NeedsExample Reference

break-before

The break-before CSS property describes the page, column or region break behavior before the generated box. If there is no generated box, the property is ignored.
CSS CSS Fragmentation CSS Property NeedsExample Reference

break-inside

The break-inside CSS property describes how the page, column or region break inside the generated box. If there is no generated box, the property is ignored.
CSS CSS Fragmentation CSS Property NeedsExample Reference

caption-side

The caption-side CSS property positions the content of a table's <caption> on the specified side.
CSS CSS Property CSS Tables Reference

clear

The clear CSS property specifies whether an element can be next to floating elements that precede it or must be moved down (cleared) below them. The clear property applies to both floating and non-floating elements.
CSS CSS Positioning CSS Property Reference

columns

The columns CSS property is a shorthand property allowing to set both the column-width and the column-count properties at the same time.
CSS CSS Multi-columns CSS Property Reference

column-span

The column-span CSS property makes it possible for an element to span across all columns when its value is set to all. An element that spans more than one column is called a spanning element.
CSS CSS Multi-columns CSS Property Reference

column-width

The column-width CSS property suggests an optimal column width. The column-width is the maximum width a column will become before adding another column. For instance, a 300px column width a gap of 0px would be a single column at 599px, but at 600px it would be split into 2 columns. This allows us to achieve scalable designs that fit different screen sizes. Especially in presence of the column-count CSS property which has precedence, to set an exact column width, all length values must be specified. In horizontal text these are width, column-width, column-gap, and column-rule-width.
CSS CSS Multi-columns CSS Property Reference

counter-increment

The counter-increment CSS property is used to increase the value of CSS Counters by a given value. The counter's value can be reset using the counter-reset CSS property.
CSS CSS List CSS Property NeedsMobileBrowserCompatibility Reference

counter-reset

The counter-reset CSS property is used to reset CSS Counters to a given value.
CSS CSS List CSS Property NeedsMobileBrowserCompatibility Reference

CSS Box Model

CSS Box Model is a CSS module that defines the rectangular boxes, including their padding and margin, that are generated for elements and laid out according to the visual formatting model.
CSS CSS Box Model CSS Reference Overview

CSS Conditional Rules

CSS Conditional Rules is a CSS module that allows to define a set of rules that will only apply based on the capabilities of the processor or the document the style sheet is being applied to.
CSS CSS Conditional Rules CSS Reference Overview

CSS Flexible Box Layout

CSS Flexible Box Layout is a module of CSS that defines a CSS box model optimized for user interface design. In the flex layout model, the children of a flex container can be laid out in any direction, and can “flex” their sizes, either growing to fill unused space or shrinking to avoid overflowing the parent. Both horizontal and vertical alignment of the children can be easily manipulated. Nesting of these boxes (horizontal inside vertical, or vertical inside horizontal) can be used to build layouts in two dimensions.
CSS CSS Flexible Boxes CSS Reference Overview