the position of horizental line
-
I want to add one horizental line at the bottome of my master page: ... (some other controls) </form> <hr /> </body> however, this line is always displayed at the top of the body. anyone can give me one hint what is the possible reason?
-
I want to add one horizental line at the bottome of my master page: ... (some other controls) </form> <hr /> </body> however, this line is always displayed at the top of the body. anyone can give me one hint what is the possible reason?
Seraph_summer wrote:
however, this line is always displayed at the top of the body.
You have to put it inside
Table
. :-DAbhijit Jana | Codeproject MVP Web Site : abhijitjana.net Don't forget to click "Good Answer" on the post(s) that helped you.
-
Seraph_summer wrote:
however, this line is always displayed at the top of the body.
You have to put it inside
Table
. :-DAbhijit Jana | Codeproject MVP Web Site : abhijitjana.net Don't forget to click "Good Answer" on the post(s) that helped you.
thanks, I have tried as follows, unfortunately,it gives the same behaviour <table style="width: 100%;"> <hr /> </table>
-
thanks, I have tried as follows, unfortunately,it gives the same behaviour <table style="width: 100%;"> <hr /> </table>
width: 100%;height: 100%">
Manas Bhardwaj Please remember to rate helpful or unhelpful answers, it lets us and people reading the forums know if our answers are any good.
modified on Saturday, September 12, 2009 6:46 AM
-
width: 100%;height: 100%">
Manas Bhardwaj Please remember to rate helpful or unhelpful answers, it lets us and people reading the forums know if our answers are any good.
modified on Saturday, September 12, 2009 6:46 AM
:doh: [Edit] Now it looks Good [/Edit] [Edit2]Broken Again [/Edit2]
Abhijit Jana | Codeproject MVP Web Site : abhijitjana.net Don't forget to click "Good Answer" on the post(s) that helped you.
modified on Saturday, September 12, 2009 7:05 AM
-
thanks, I have tried as follows, unfortunately,it gives the same behaviour <table style="width: 100%;"> <hr /> </table>
Where is TR and TD ? This is very common mistake that we do. Please put HR inside TR > TD Then Check. ;P
Abhijit Jana | Codeproject MVP Web Site : abhijitjana.net Don't forget to click "Good Answer" on the post(s) that helped you.
modified on Saturday, September 12, 2009 6:47 AM
-
Where is TR and TD ? This is very common mistake that we do. Please put HR inside TR > TD Then Check. ;P
Abhijit Jana | Codeproject MVP Web Site : abhijitjana.net Don't forget to click "Good Answer" on the post(s) that helped you.
modified on Saturday, September 12, 2009 6:47 AM
I tried as follows, but nothing is special, the line is always displayed on the top! <table style="width: 100%;height:100%"> <tr> <td> <hr /> </td> </tr> </table>
modified on Saturday, September 12, 2009 11:15 AM