Показать сообщение отдельно
  #2 (permalink)  
Старый 17.04.2011, 00:50
Аватар для рони
Профессор
Отправить личное сообщение для рони Посмотреть профиль Найти все сообщения от рони
 
Регистрация: 27.05.2010
Сообщений: 33,105

TicTac,
Примерно так )))
<!DOCTYPE html>
<html>
<head>
  <title></title>
<script type="text/javascript">
window.onload = function () {
function _columns(d) {
    var a = document.createElement("style"),
        c = ".column_ { position: fixed; z-index: 999; top: 0; display: block; height: 100%; border-right: 1px dashed #4affff; } * html .column_ {position: absolute; }";
    a.setAttribute("type", "text/css");
    a.styleSheet ? a.styleSheet.cssText = c : (c = document.createTextNode(c), a.appendChild(c));
    document.getElementsByTagName("head")[0].appendChild(a);
    a = 0;
    for (b = d.length; a < b; a++) c = document.createElement("span"), c.className = "column_", c.style.left = d[a] + "%", document.body.appendChild(c)
};
_columns([10,20,30,40,50])
};
</script>
</head>
<body>
</body>
</html>
Ответить с цитированием