本文介绍了具有通用RHS和LHS的母版页的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在处理Web需求,因此我必须实现具有通用页眉和页脚以及常见LHS和常见RHS的母版页,但我知道如何提供通用页眉和页脚但是如何实现常见的LHS和RHS。 ........?任何.....
I am dealing with a web requirement so that i got to implement master page with common header and footer and also with common LHS and common RHS, but i know about providing common header and footer but how to achieve common LHS and RHS.........?any.....
推荐答案
<!DOCTYPE html>
<html>
<body>
<div id="container" style="width:500px">
<div id="header" style="background-color:#FFA500;">
<h1 style="margin-bottom:0;">Header</h1></div>
<div id="menu" style="background-color:#FFD700;height:200px;width:100px;float:left;">
<b>Left Side </b><br>
</div>
<div id="content" style="background-color:#E23EEEE;height:200px;width:300px;float:left;">
MAIN CONTENT</div>
<div id="right" style="background-Color:#30F04A;height:200px;width:100px;float:right;">
Right Side
</div>
<div id="footer" style="background-color:#FFA500;clear:both;text-align:center;">
Footer</div>
</div>
</body>
</html>
谢谢&问候
Anand。 G
Thanks & Regards
Anand. G
这篇关于具有通用RHS和LHS的母版页的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!