3 列 Web 部件页面?
我正在为一些东西设置一个 ASP.NET Web 部件门户。我有一个[希望]非常简单的问题。如何让页面有 3 个主要栏目?
现在我有两列使用
和
。但我不知道如何在中心放置一个面板。右侧面板基本上位于中心,并且没有 css float: middle/center。那么三面板Web部件页面是如何完成的呢?I am setting up an asp.net web parts portal for some stuff. I have a [hopefully] really easy question. How can I make the page have 3 major columns?
Right now I have two columns using <div id="leftpanel" style="float: left">
and <div id="rightpanel" style="float: right">
. But I cannot figure out how to get a panel in the center. The right panel is basically in the center and there is not a css float: middle/center. So how is a three panel web parts page accomplished?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
前两个向左浮动,最后一个向右浮动。
如果这不起作用,有时也不起作用,那么请使用 Ed B 的答案。
float the first two left and the last one right.
If that doesn't work, and it sometimes won't, then use Ed B's answer.
具有 3 列的表。在每列中添加一个 div。
将样式保留在 div 中......而不是表格中
A table with 3 columns. Add a div in each column.
Keep the style in the divs..not the table