使用 DIV + 的布局语法CSS?
如何使用 div 将窗口拆分为左窗格以进行树视图导航,从而获得包含 3 个部分的 asp.net 母版页。右侧的主窗口将分为横幅类型顶部 div 和其下方的主窗口 div,用于主内容窗口,我希望在母版页实现中加载子页面。
有人能给我一个语法示例吗?
How can I get a master page for asp.net with 3 sections using divs to split the window into a left pane for a tree view navigation. The main window to the right will be divided into a banner type top div and a main window div under it for the main content window where I want child pages loaded in the master page implementation.
can someone give me a syntax example?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我可能会选择这样的东西:
CSS:
HTML:
放入背景颜色只是为了区分它们,祝你好运!
I'd probably go for something like this:
CSS:
HTML:
Put in background colours just to tell them apart, good luck!
基于 Stann0rz 答案,母版页和内容视图如下所示。此示例是使用 ASP.NET MVC 完成的,但非常适用于传统的 ASP.NET Webform。
主页:
内容视图:
Building upon Stann0rz answer, here is what a master page and content view could look like. This example was done using ASP.NET MVC but would apply very closely to traditional ASP.NET Webforms.
MASTER PAGE:
CONTENT VIEW: