/
githubmirror
/
servo
Обзор
Документация
Войти
/
githubmirror
/
servo
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
tests/html/test_style.html
12 строк
542 B
Josh Matthews
Address review comments.
18 дек 2014, 20:54
18 дек 2014, 20:54
3cfe8ab
Код
Авторство
О чём код?
<div id="test" style="display: block; background-color: black; background-position: top left; font-style: italic">test text!</div> <script> var id = document.getElementById('test'); alert(id.style.display); id.style.display = 'none'; alert(id.style.display); alert(id.style.fontStyle + ' ' + id.style['font-style']); id.style.background = "black"; alert(document.getElementById('test').style.background); alert(document.getElementById('test').style.backgroundColor); alert(document.getElementById('test').style.backgroundPosition); </script>