|
|
|||||||||
|
|||||||||
|
|||||||||
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Display Modes |
|
|
|
Free Web 2.0 Code Generator! Generate data entry and reporting .NET Web apps in minutes. Quickly create visually stunning, feature-rich apps that are easy to customize and ready to deploy. Download Now!
|
|
#1
|
|||
|
|||
|
css forms
<input type="file" name="fileUpload" size="18" style="FONT-SIZE: x-small;BACKGROUND-COLOR: #DCDCDC;BORDER-RIGHT: thin solid Gray; BORDER-TOP: thin solid Gray;FONT-SIZE: x-small;BORDER-LEFT: thin solid Gray;BORDER-BOTTOM: thin solid Gray;">
that's the code, here's the problem... works well in IE but i cant make the same look in netscape 6, is there no way to make the textarea and button smaller in netscape and also not make them beveled??? |
|
#2
|
||||
|
||||
|
When assign several styles to an object, it's better to use a class.
Try this... (the <style> block goes in the HEAD section) Code:
<style>
textarea, input {
font-size : 11px;
font-family : Verdana;
background-color #dcdcdc;
border : 2px outset #999999;
}
</style>
<input type="text" name="foo" value="testing">
<textarea>testing</texarea>
Code:
<textarea style="width : 350px; height : 200px;"></textarea> |
![]() |
| Viewing: Dev Articles Community Forums > Web Design > Web Development > css forms |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|
|