例如:
<style>
.one{ width:100pxheight:100pxborder:1px solid #F00clear:both}
.two{ width:100pxheight:100pxborder:1px solid #F00clear:both}
</style>
<table class="one"></table >
<table class="two"></table >
解释:关键在与clear:both这个是设置设置清除浮动;
A B 正确
C:错误, border="3" 是指边框宽度为3像素 而不是厘米
D:错误: 该表格有3行2列 ,而不是2行3列
效果图
html转化为asp,只要把.html后缀修改为.asp后缀就可以了html嵌入一个iframe可以实现,或者用js来添加也可以如果目的是为了上传到互联网上供大家浏览,那么网站转化为asp后,用<!--#file="" -->调用这个是最好的--------------如果只是纯碎的玩玩,那么用iframe或者js这个更加好一点,------------------首先是iframe嵌入,首先你把导航写在nav.html这个文件里面,然后调用代码为:<body><iframe src="nav.html" width="960px" height="50px" frameborder="0" scrolling="no"></iframe></body>-----------------------------js方法就是通过createElement以及createTextNode来实现,这个就不多说了