четвъртък, 6 ноември 2014 г.

Цвят на текста и фон

color:цвят

background:цвят
  
Пример:
Резултат:
<font style="color:white; background:#ff0000">Бели букви на червен фон.</font>
Бели букви на червен фон.
background-image: url("адрес на графичен файл")

background-attachment:стойност
Допустими стойности:     
  • fixed
  • scroll
background-repeat:стойност
Допустими стойности:
  • repeat
  • repeat-x
  • repeat-y
  • no-repeat




  
Пример:

Резултат:
<body style="background-image: url('myFolder/car.gif'); background-repeat: no-repeat; background-attachment:fixed;">
  <b>Текст..........<br>
  Текст..........<br>
  Текст..........<br>
  Текст..........<br>
  Текст..........<br>
  Текст..........<br>
  Текст..........<br>
  Текст..........<br>
  Текст..........<br></b>
</body>


Текст..........
Текст..........
Текст..........
Текст..........
Текст..........
Текст..........
Текст..........
Текст..........
Текст..........


Рамки
border-style:стойност
border-top-style:стойност

border-right-style:стойност

border-bottom-style:стойност

border-left-style:стойност

Допустими стойности:
  • none
  • dotted
  • dashed
  • solid
  • double
  • groove
  • ridge
  • inset
  • outset
border-width:стойност
border-top-width: стойност

border-right-width: стойност

border-bottom-width: стойност

border-left-width: стойност

Допустими стойности:
  • thin
  • medium
  • thick
  • число и мерни единици
   
   
   
Мерни единици:
 px (pixels)
 mm (millimeters)
 cm (centimeters)
 pt (points)
 in (inches)
border-color:цвят
border-top-color:цвят

border-right-color:цвят

border-bottom-color:цвят

border-left-color:цвят
  
Пример:
Резултат:
<font style="background:yellow; border-style:solid; border-width:1px; border-color:green">Текст..................</font>


Текст..................