Шаблон:Test3

Материал из Integra-S Wiki
Перейти к: навигация, поиск

<!DOCTYPE html> <html> <head> <style> p.one {

   border-style: solid;
   border-width: 5px;

}

p.two {

   border-style: solid;
   border-width: medium;

}

p.three {

   border-style: dotted;
   border-width: 2px;

}

p.four {

   border-style: dotted;
   border-width: thick;

}

p.five {

   border-style: double;
   border-width: 15px;

}

p.six {

   border-style: double;
   border-width: thick;

}

p.seven {

   border-style: solid;
   border-width: 2px 10px 4px 20px;

} </style> </head> <body>

The border-width Property

This property specifies the width of the four borders:

Some text.

Some text.

Some text.

Some text.

Some text.

Some text.

Some text.

Note: The "border-width" property does not work if it is used alone. Always specify the "border-style" property to set the borders first.

</body> </html>