2
我试图从窗体提交样式我的谢谢页面。它必须包括: - 页面背景颜色 - 围绕用户个人资料图片占位符 的边框 - 比用户信息高一行,低于您的用户信息。造型感谢你页面
感谢页面由三列组成: 第1栏是用户的个人资料图片 第2栏是除注释所有形式的信息 第3栏是征求意见。
下面是感谢页面的HTML代码:
#columncontainer {
width: 960px;
margin: 0 auto;
}
#column1 {
float: left;
width: 240px;
}
#column2 {
float: left;
width: 480px;
}
#column3 {
float: left;
width: 240px;
}
#footer {
clear: both;
}
#image {
margin-left: auto;
}
#columncontainer {
background-color: white;
}
<h1>Thank you for your information.</h1>
<h3>Below is your profile information.</h3>
<div id="columncontainer">
<div id="column1">
all column 1 data here
<figure>propic.png <figcaption>Profile Pic</figcaption> </figure>
</div>
<div id="column2">
<hr>
all column 2 data here
<hr>
</div>
<div id="column3">
all column 3 data here
</div>
</div>
我怎样才能提高这些网页吗?
我是谁认为这个不中用要我们做他的工作只有一个? –