HTML/CSS/CSS Controls/Flash page

Материал из Web эксперт
Перейти к: навигация, поиск

Flash page with div

   <source lang="html4strict">

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Untitled Document</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <style type="text/css"> body {

 text-align: center;
 min-width: 650px;

}

  1. flashvertical {
 position: absolute;
 top: 50%;
 margin-top: -200px;
 left: 0;
 width: 100%;

}

  1. flashhoz {
 width: 624px;
 margin-left: auto;
 margin-right: auto;
 height: 395px;
 background: #CCC;

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

Flash goes here

</body> </html>

</source>