我刚刚转向使用表格格式。如果我想做colspan和rowspan我们在Table标签中使用colspan& rowspan,我们如何在标签中做同样的事情。请帮助我。
答案 0 :(得分:0)
您必须了解/了解CSS attributes - float
,display
,width
,clear
等内容。
例如,
<style type="text/css">
#leftPane{
float:left;
width:20%;
}
#rightPane{
float:right;
width:77%;
}
<div id="leftPane"></div>
<div id="rightPane"></div>
<div style="clear:both"></div>
....