Author: .netBeginner | Posted on: 6/2/2009 9:06:51 AM | Views : 843

 I want to set the div to screen hieght and apply a border to gray color.This div woul be a border and I have multiple divs in it..menu etc
this is the code I used , and is not working..
<head runat="server">
    <title>Untitled Page</title>
    <asp:ContentPlaceHolder ID="head" runat="server">
    </asp:ContentPlaceHolder>
    <link href="Global1.css" rel="Stylesheet" type="text/css" />
   
    <style type="text/css">
        #main
        {
                border: thin solid #666666 ;
                width: 970px;< ...

Go to the complete details ...