СТАТИСТИКА СЕРВИСА

Проекты:(+)
Вакансии:151(+0)
Заказчики:7359(+0)
Исполнители:5837(+0)
ВХОД В АККАУНТ

      

НОВОСТИ СЕРВИСА


????????? ??????? ? ????????????
???????? ??????, ??? ??? ??? ????? ???????? ???????????? ? ???????? ( ??? ??? ?? ?????? ????? ???????? HTML - ???????? ), ?????? ???? ?? ??? ? ??????? "???????". ? ?????????, ??????????? ?? ????, ??? ??? ??????, ???????? ????? ?? ????????????? ??????????. ? ???? ?????? ? ???????? ????????? ?????????????? ???????? ????? ???????? ????????? ? ???????? ??? ?? ?????????????.
?????, ???????, ? ???????????, ??? ???????? "?????????" ? "????????????" ???????. ????:
- ????????? ????? ???????? ???????, ? ?????????? ??????? ??? ???????? ?? ???????? ??? ??? ????? ?????????? ?? ?????????? ????????? ???????, ?????, ??? ???????? <tr> ? <td>.
- ???????????? ????? ???????? ???????, ? ?????????? ??????? ? ???????? ???? ??? ?? ?????? ???? <table>.

????????? ?? ???????? ????: "? ??? ????????????? ?? ??????? ??????? ? ????? ? ????? ?????? ??????? - ????????? ??? ?? ?????????, ???? ????? ??????????". ???? ????????? ? ?????? ???????? HTML, ??? ????? ????????, ?? ????? ??????, ??? ??????? ??????????????? ?????? ?? ??? "???????? ???????", ? ??? ?????????????????? ?????? ?????????? ( ???????? ???????????? ??????? ? ?? ??? ). ?? ????? ???, ???-????? ??????????? ??? ??????? ? ??????????? ?? ????????, ??? ? ??????? ? ????, ??? ???????????? ????? ???????????? ???????, ???, ??? ?????? ???????? ??????????? ????????? ????????? ?? ???????? ?? ????? ????? ? ? ?????? ???????????, ??? ???????????? ??????? - ?????? ?? ????. ? ??? ???????? ???-????? ????? ?????????? ??? ???????, ??????????? ? ??????? - ??????????? ?????????? ???-?????? ??????????? ??? ???????, ? ?????????? ???? ?????? ???????????? ??????????? ??? ??????? ? ?????????? - ???? ??????, ??????? ? ???????, ? ? ??? ??? ? ???:????? ??????? ??????????? ?????? ????????? ???????, ? ?? ? ??????. ??????????? ???? ???? ??? ? ?? ??? ??? ??? ????????? ??? ?????????? ????? ???, ? ?? ? ???. ??? ????? ????? ??, ????? ???? ?????? ????? ?????? ???????? ????, ??????? ????? ?????????. ??, ???? ?? ??? ??? ???????????? ?????????? ??????:?? ? ????????? ?? (???????????) ??????? ????? - ??????? ??????????? ? ???????????? ? ???????? ?????? ?????, ????? ?????????? ???? ?????????? ??????? ??????, ??? ?? ?????? ??????, ???? ???????????? ? ????????? ???????????? ? ????????? ?? ?????? ??????? ???????? ?? ?????? ????? ? ??????? ?????????? ??????, ?????? ????? ?? ?????? ???????? ?? ????, ??????? ??????? ??????????; ????????? ?????? ??????????? ? ?????????? ??????? ? ??????. ???, ??? ??????, ??? ??????? ?????? ?????????????? ????? ?????????? - ????? ?????????. ??????? ??????? ??????:
???????? ???? ????? ? ??? ????? ??????? ????????? ???????, ?????? ????? ???? ??????? ?? ????????? ? ?? ??????????? ? ????????? ??????????? ????????? ??? ????? ??????????? ?????? ????????????. ?????????????? ??????? ???:

<?xml encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN">
<html xmlns="http://www.w3.org/1999/xhtml" lang="ru" xml:lang="ru">
<head>
<title>Example</title>
<meta http-equiv="Content-Language" content="ru" />
<link rel="stylesheet" href="css/main.css" type="text/css" />
</head>
<body>
<table cellpadding="0" cellspacing="0" border="1" style="height: 100%" width="100%>
<tr>
<td>&nbsp;</td>
</tr>
</table>
</body>
</html>

?? ?????? ????? ?? ?????? ???? ?? ???????? ???????, ? ???????? ? 1 ???????, ?????????? ?? ????????? ? ??????????? ?? 100 ????????? ?????????? ??????? ????????. ?????? ???? ??? ? Internet Explorer - ?? ????????????? ?????? ??? ??? ? ????, ?? ?????? ???????? ? Mozille ? Opera ??????, ??? ??? ?? ???, ??? ?? ??????? - ??????? ???? ????, ??? ?? ??????????? ?? 100 ????????? ?? ?????? - ??? ???????? ????? ???? ??? ?? ??????!
????????? ??? ??????, ??? ? ?????? ?????? ??????????? ??? ??????? ?????? ?? ???? ????????, ? BODY, ??? ????????? ?????? ?? ????????, ?? ?? ????? ??? ? ?? ????????????? ????????? ? ?????? ?????????? "?????????". ????? ???????? ??? ? ???????, ????? ? ccs ????? ????????:

BODY, HTML {
height: 100%;
}

? ?????? ? ???? ?????? - ??????? ????? ????????? ????????? ? ? Opera, Mozilla ? ? Internet Explorer.
?????? ?? ???? ???????? ( ? ????? ?? ?????? ?????? ) ????????? "?????", ??? ?? DIV'?. ??? ???????, ????????? ????????? ???? ?????? ???????? ????? ??? ????:

??????:

<table>
<tr>
<td>?????-???? ?????</td>
</tr>
</table>

??????:

<div>?????-???? ?????</div>

???????????, ??? ??????? ?????? ? ??????? ? ???????? ?? ????????. ??? ??????? ????????? ??????????? ??? ??? ??????? ????, ??????? ??????????, ??? ????? ???????? ????????? ? ?????? ???????? ??? ? ?????? ????????????:

????????? ???????:

<table>
<tr>
<td valign="top">????? ??????? ??? ?????????</td>
<td valign="top">?????? ??????? ??? ????????</td>
</tr>
</table>

???????? ???????:

<div style="float:left">??? ?????????</div><div style="float:left">??? ???????</div>

?????? ??? ????? ??? ?????????, ?????? ??, ??? ???????? ? style ? ????????? ??????? ?????? ( ??? ?? css ). ?? ???? ? ?????? ??? ?????? ? css-???? ?????????? ( ??? ?????????? ???????? float ) ?????? ???????? ????????? ? ????????????? ??????? ?????.
????????? ?????? ????? ??????????????? ???????? ???????? ????????? ???????? ? ????????? ? ???????? ??? ??????:

timer.js:

function timestart()
{
var myDate = new Date();
var mili = myDate.getMilliseconds();
document.getElementById('new').value=mili;
}

function timeend()
{
var myDate = new Date();
var mili=myDate.getMilliseconds();
alert((mili-document.getElementById('new').value)/1000);
}

1)

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN">
<html xmlns="http://www.w3.org/1999/xhtml" lang="ru" xml:lang="ru">
<head>
<title id="new">Example with tables</title>
<meta http-equiv="Content-Language" content="ru" />
<link rel="stylesheet" href="css/main.css" type="text/css" />
<script type="text/javascript" src="timer.js">timestart()</script>
<script type="text/javascript">timestart()</script>
</head>
<body onload="timeend()">
<table cellpadding="0" cellspacing="0" border="0" width="100%">
<tr>
<td valign="top">text</td>
<td valign="top">text</td>
</tr>
</table>
<input type="text" id="text" value=""/>
</body>
</html>

2)

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN">
<html xmlns="http://www.w3.org/1999/xhtml" lang="ru" xml:lang="ru">
<head>
<title id="new">Example with div's</title>
<meta http-equiv="Content-Language" content="ru" />
<link rel="stylesheet" href="css/main.css" type="text/css" />
<script type="text/javascript" src="timer.js"></script>
<script type="text/javascript">timestart()</script>
</head>
<body onload="timeend()">
<div style="float:left;width: 50%">text</div><div style="float:left;width: 50%">text</div><br />
<input type="text" id="text" value=""/>
</body>
</html>

??????????:

???????/????????????????????????
Internet Explorer 6.00.07520.0601
Mozilla SeaMonkey 1.0b0.0450.02

??????????: ?????? ????????? ? ????????????? - ??????? ???????? ? 10 ???????.

??? ????? ?? ????? - ???? ?? ????? ??????? ?????? ???? - ??? ???? ?????? ?? ??????? ????????. ? ??????????? ????, ???? ?? ??????? ??????????? ?????? ??? ??????? 5 ( ??? ?????? ???????? ????? ) ? ??????? ???? ?? ??? ?? ? ?????????????, ? ??????? ? ????????. ? ???? ?? ??????? ??????????????? ??????, ??????? ?????????????? ???? ????? ??????????? ????? ???????? ????? ????? ?????!

? ????????? ? ? ?????? ???? ???? ?????????? - ? ? ?????? ??????? - ????????????? ??????? ?? ????????? ??????????. ?????? ???????????? ????? Internet Explorer, ??????? ?? ???????????? ? ?? ??? ???? ???? ???????? ???????????? ???????? ? ???????? ??????? ( ???????? ??????? - ??????? ? ??????????? ?????????? ?????? ?????? ), ? ???? ? ????????????, ?? ? ??????? ??????????? ?????, ??? ????? ????????.
???????? ??????? ????? ??? ???:

<?xml encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN">
<html xmlns="http://www.w3.org/1999/xhtml" lang="ru" xml:lang="ru">
<head>
<title>Example2</title>
<meta http-equiv="Content-Language" content="ru" />
<link rel="stylesheet" href="css/main.css" type="text/css" />
</head>
<body>
<div style="width:100%">
<div style="width:50%;background-color: red;float:left;height: 100px;">&nbsp;</div>
<div style="width:50%;background-color: black;float:left; height: 100px;">&nbsp;</div>
</div>
</body>
</html>

???????? ???? ??? ? ???? ? ?????? ??? ? Internet Explorer ?? ??????? ???????, ??? ???? ?????? ??? ??????????? ???? ????????, ?? ????? "??????" ???? ??? ?????, ?????? ?????? ???? ??????????? ??? ???????. ?? ???? ??????? ???? ?? ???? ? ?????? ????????, ?? ?? ?????? Internet Explorer, ?? ?????? ??????? ?? ????? ???????????. ??????? ? ???, ??? ? Internet Explorer ?? ?????????? ???????? ??????.

????? ?? ??????????? ????? ??????? ????????? ??????? ????????? ????? ???????, ????????, ????? ? ?????????? ??????? ?????? ???? ??? ??????? ? ??????? ?? ????????, ??????? ???????? ????? ? ????? ? ?? ??????, ?? ??? ???? ?????? ??????? ? ?????????? ?????? ????????? ??????????. ? ????? ?????? ?????????? ???????????? "????" ? ?????? ?????????, ??? ?? ????? ??????? ? ?? ??? ?????? ????? ???????, ???? ????? ?? ?????? ????? ????. ? ????? ?????? ????? ???????, ??? ? ???? ????? ???????? ?? ????? ????. ???? ????? ???? ??????.

?????? ?? ????? ?????????????? ????? ??????? ?????, ??? ? ? ?????? ??????? ????????? ???? ???? "?????" ? "??????", ? ? ?????? ??????? ??? ??????.

??????? ????? ????????? ??????.

????????? ???????:

  • ???????????????? ????, ?????? ????????? ?????????????? ? ?? ???????? ????????

  • ??????????? ?????? ????? ???????? ??????????? ????????


???????????? ???????:

  • ????????????? ????????? ?? ??????? ?????????????? ?????????

  • ?? ??? ?????? ????? ????????? ??? ?????????????? ???????, "?????" ? ?????? "????????"


??????? ????? ???????? ?????.

????????? ???????:

  • ???? ??????????? ????????? ??????????? ????? ?????

  • ???????? ???????? ????????? ??????????????? ?????????, ??????? ?????-????? ????????? ????????? ? ?????? ?????????, ????? ?????????? ?????


???????????? ???????:

  • ?????????? ????, ?????? ??????????????

  • ??????????? ?? ???? ???????? ??????, ??? ???????? "????????" ??????????


?? ???? ?????????? ???, ??????? ????????, ????? ?????? ??????? ??? ????, ??? ???? ?????? ??????, ?? ???????? ??????? ??????? ??????? - ??? ??????? ???????????? ?????? ???????? ????????? ? ??????????? ?????????? - ??? ?????????. ???? ???????? ????, ??? ??????? ? - ?? ? ??? ?????? - ? ??????????? ?? ?????? ? ?? ?????????? ?????????, ? ???????? "??????" ????? ????????, ? ?????? ??? ?????????? ??? ???????. ????? ??????? ???????, ??? ?????? ???? ?????? - ????? ???????? ????? ?????, ??? ?? ?????? ?????? ????? ??????????, ????????? ????????? ? ????????? - ????? ????? ?????? ?? ???? ??????? ???????.

??????

????????? ??????? - ??????, ???????????? ?? ????? ? ????? ?????????, ??? ??? ??? ????? ??????? ?? ????? ?????? ?????????, ?????, ??? ????? ????????? ????? ????? ???????????. ?????? ????? ??????????? ???????? ?????????, ? ?????? ????? ???-????? ????? ???????, ?????? ??? ? ???????????????? ?????, ??? ? ? ????? ???? ? ??? ?????? ?? ??? ????? ???????? ? ??? ????? ?????????? ???????. ? ????? ? ???? ???????? ????????? ? ?????? ????? ??? ??????? ? ??????? - ????? ????? ??????????????, "???????? ???" ??????? ??? ?????? ? ????? ????????????.
??? ???????????? ???????? ????? ??????? ??? ??????, ????????? ???????? ??? ????? ????????, ??? ????? ???????????? ?? ?????????? ?????????? ???????, ??????? ???????? ??????????? ? ??????? ??????????. ?? ? ?????????, ??? ?? ?????????? ????????? ?? ??????? ?????????????? ????????? - ??????? ????? "?????" ? ???????? ? ??????????? ?????????? ????? ? ?????? ? ??? ( ??????? ????? CSS-2, CSS-3 ), ??? ?????????? ????????? "????", "????????" ? ?????? "????????????" ?? ????? ???????? ????????????.


Ср, 11 Января 2006 11:42



Использование материалов сайта возможно только с указанием ссылки на ВэбСнаб
КОММЕНТАРИИ
Пользователь оффлайн  -Makc-
Пт, 11 Августа 2006 14:33
?? ????????? ??????? ?????? ??????? ??????? ????????, ???? ?? ??????????? ? ????????????? CSS2. ????????? ??????? - ??? ??????????. ??????? - ??? ??? ???????????????.

P.S. ???? ???-?? ?????????? ????????? ????? div, ?? ?????? ????? ??? ? ?? ?????....
Пт, 22 Сентября 2006 11:18
?? ? ???? ???? ??????? ? ??????? ?????????
Сб, 28 Октября 2006 09:00
? ????? ????????????????, ?????? ? ??????, ???-?????? ????? ???-?????? ??????? ?? ????: http://webdesign.site3k.net/sovet/badrules.html
Чт, 23 Декабря 2010 14:51
???????? ???????