CSS is it possible to possition a table on top of another table? -


i got 2 tables 1 below other. want move covers bit of top table. can css?

on second table,

try:

margin-top: -50px 

or:

position: relative; top: -50px; 

but tables sometime tricky style (you should tests in different browsers)


Comments

Popular posts from this blog

jQuery clickable div with working mailto link inside -

java - Getting corefrences with Standard corenlp package -

WPF: binding viewmodel property of type DateTime to Calendar inside ItemsControl -