Posted by Thierry Lam on 06/13/07 14:43
I have the following codes:
<html>
<head>
<style type="text/css">
div.upload
{
border: 1px black solid;
border-spacing: 2px;
border-width: 1px;
padding: 5px;
width: auto;
}
div.uploadbutton
{
}
</style>
</head>
<body>
<div class="upload">
<input type="file" name="hello" /><br />
<input type="file" name="hi" />
<div class="uploadbutton">
<input type="submit" name="add" value="Submit Files" />
</div>
</div>
</body>
</html>
I want the above to display so that the text input always take about
85% of the bounding box, the browse button take the remaining 15% and
I also want the submit button to be always at the bottom right corner.
Any help on how to accomplish all that?
Thanks,
Thierry
Navigation:
[Reply to this message]
|