Инструменты пользователя

Инструменты сайта


software:development:web:docs:glossary:property.css

CSS (Свойство)

Свойство CSS — это характеристика (например, цвет), связанное значение которой определяет один из аспектов того, как браузер должен отображать элемент.

Пример

/* "div" is a selector indicating that all the div elements */
/* in the document will be styled by that rule */
div {
  /* The property "color" with the value "black" indicates */
  /* that the text will have the color black */
  color: black;
 
  /* The property "background-color" with the value "white" indicates */
  /* that the background color of the elements will be white */
  background-color: white;
}
Только авторизованные участники могут оставлять комментарии.
software/development/web/docs/glossary/property.css.txt · Последнее изменение: 2023/08/16 22:58 — 127.0.0.1