Jump to content
  • 0

Проблема с margin-bottom


lavrentiy
 Share

Question

Суть проблемы.

Нужно, чтобы при нажатии на ссылку таблица подвигалась чуть вверх.

след. код не работает:

<table border=10 cellspacing=5 cellpadding=5 width=100 height=100 onclick='this.style.margin-bottom="100px;"'><tr><td></table>

<table border=10 cellspacing=5 cellpadding=5 width=100 height=100><tr><td onclick='this.style="margin-bottom:100px;"'></table>

Link to comment
Share on other sites

11 answers to this question

Recommended Posts

  • 0

<script type="text/javascript">
window.onload = function() {
var table = document.getElementById('table');
table.onclick = function() {
this.style.marginTop = '30px';
}
}
</script>

<table border=10 cellspacing=5 cellpadding=5 width=100 height=100><tr><td></table>
<table border=10 cellspacing=5 cellpadding=5 width=100 height=100 id="table"><tr><td></table>

Вс? прекрасно пашет.

Здесь сделал на примере marginTop, а marginBottom само собой работать не будет как ты того ожидаешь - почему?.. потому что прежде думать своей головой надо :cool:

Копай в сторону позиционирований.

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy