Hi,
I want to create the website in ASP.net. I have some problem in Designing the CSS File. My CSS file Contains,
1- Header
2- Menu
3- Left Menu
4- News at Right side
and main Div corner are round shape
Pleas tell me the simple solution to create my website
Loading

Sandeep ShekhawatPosted Jun 23, 2011, 10:22 AM
1. Define CSS like LayoutCSS.css
body
{
background-color:Orange;
}
.main
{
width:960px;
background-color:White;
font-family:Times New Roman;
font-size:14px;
color:Black;
margin-left:200px;
margin-top:20px;
}
.title
{
width:940px;
margin-left:10px;
margin-right:10px;
margin-top:5px;
text-align:center;
font-family:Arial;
font-size:26px;
font-weight:bolder;
position:absolute;
background-color:Green;
color:White;
height:40px;
}
.menu
{
width:180px;
margin-left:10px;
background-color:Gray;
margin-top:55px;
position:absolute;
height:400px;
}
.content
{
width:740px;
margin-left:200px;
margin-top:55px;
height:400px;
position:absolute;
margin-right:10px;
background-color:White;
}
.footer
{
width:940px;
margin-left:10px;
margin-right:10px;
text-align:center;
margin-top:465px;
position:absolute;
background-color:Black;
color:White;
height:40px;
}
define html page/ .aspx page like:
2. add link
3.define code like:
4. output: