|
|
|||||||||
|
|||||||||
|
|||||||||
| |
||
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
I wanted to provide a line on an HTML Report that I have created to a client so that he can write a value on the report, for example:
Client Name: _________________________ The <HR> doesn't work because it puts the horizontal line vertically in the middle not at the bottom. I figured out that I can do this <TR><TD><U> > > > > > </U></TD></TR> This works great but I need an awful lot of  s. 1. Is there a way to tell the system to use 1000  , for example 100 or  : X 100? 2. Or as always is there a better way? |
|
#2
|
|||
|
|||
|
Have you tried using underscores?
yo:________________________ |
|
#3
|
||||
|
||||
|
Try this:
Code:
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<style type="text/css">
<!--
.underline {
display: inline;
border-bottom-width: 1px;
border-bottom-style: solid;
border-bottom-color: #000000;
position: absolute;
width: 100px;
}
-->
</style>
</head>
<body>
Client Name:<div class="underline"> </div>
</body>
__________________
If you found a post of mine helpful, please click on the on my post to add to my reputation.
|
|
#4
|
|||
|
|||
|
There is a ASP way to insert as many spaces you like, i dont know it off the top of my head. Post it in the ASP help section if you wan to use it.
Zac |
![]() |
| Viewing: ASP Free Forums > Programming > HTML, JavaScript And CSS Help > How To Underline |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|