-
Draw a rectangle in html page (5 messages)
- Posted by: Sandeep sandeep
- Posted on: April 11 2006 06:04 EDT
Hi,
Can anybody tell me how to draw a rectangle in html with out using java script or java code
Thanks in advance
SandeepThreaded Messages (5)
- Use CSS by Keith Corbin on April 11 2006 09:34 EDT
- Use CSS by uttam sahoo on February 18 2012 07:58 EST
- Draw a rectangle in html page by Sandeep sandeep on April 13 2006 09:16 EDT
- Draw a rectangle in html page by Madz Celeste on March 01 2012 14:05 EST
- Draw a rectangle in html page by Madz Celeste on March 01 2012 14:09 EST
-
Use CSS[ Go to top ]
- Posted by: Keith Corbin
- Posted on: April 11 2006 09:34 EDT
- in response to Sandeep sandeep
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Untitled</title>
</head>
<style type="text/css">
p.one
{
width: 100px; height: 100px;
border-style: solid;
border-color: #0000ff
}
</style>
<body>
<p class="one">One-colored border!
</body>
</html> -
Use CSS[ Go to top ]
- Posted by: uttam sahoo
- Posted on: February 18 2012 07:58 EST
- in response to Keith Corbin
hi,
I have 2 questions here.
1. How to change the border size, means the thickness of the table border to 1 Px or 2 PX etc
2. How to start the rectangle at a particular point, say the top will start after 50 Px and the left will start after 10px.
youe help is greatly appreciated.
Thanks
-
Draw a rectangle in html page[ Go to top ]
- Posted by: Sandeep sandeep
- Posted on: April 13 2006 09:16 EDT
- in response to Sandeep sandeep
Thank you very much dear -
Draw a rectangle in html page[ Go to top ]
- Posted by: Madz Celeste
- Posted on: March 01 2012 14:05 EST
- in response to Sandeep sandeep
Drawing a rectangle is very easy if your a programmer but is there a possible to draw a rectangle in html?
-
Draw a rectangle in html page[ Go to top ]
- Posted by: Madz Celeste
- Posted on: March 01 2012 14:09 EST
- in response to Sandeep sandeep
Drawing a rectangle is very easy if your a programmer but is there a possible to draw a rectangle in html?
goergehill