Wednesday, 15 May 2013

html - Issue in the alignment of Divs -



html - Issue in the alignment of Divs -

i have 3 div .two of have aligned 2 cells of table row , 3rd 1 want display downwards .but 3rd div getting displayed after sec div gets ended dont want .i want 3rd div i.e id menu displayed after button frontdesk.here css used..

#wrapper { display:table; position:relative; height:auto; width: 100%; } #row { display:table-row; } #first { display:table-cell; width:75%; } #second { display:table-cell; width:25%; height:600px; } .menucss { position:relative; display:table-row; width: 168px; height:auto; }

and here fiddle link.. fiddle.please help me right this..thanks..

try position:absolute .menucss class i.e:

.menucss { position:absolute; top:20px; width: 168px; height:auto; }

here fiddle link

html css

No comments:

Post a Comment