CSS & ASP.NET Textbox Control

  • Thread starter Thread starter Beza
  • Start date Start date
B

Beza

Can you change the "Enabled" property of a Textbox control with CSS?

Also, is there a property that allows you to change the appearance of a
textbox so that it isn't "sunken" i.e. it's "flat"? If there is, is there
CSS for it?
 
Can you change the "Enabled" property of a Textbox control with CSS?

Also, is there a property that allows you to change the appearance of
a textbox so that it isn't "sunken" i.e. it's "flat"? If there is, is
there CSS for it?

Beza:

If you use linked or embeded CSS to define the borders of
INPUT[type=text] then all textboxes will not appear 3D as default. Ie:

INPUT
{
border: 2px #ff0000 solid;
background: #000000;
color: #ffffff;
....
}

....

As to your other question, i thought there was a way but i cant seem
to remember it, try searching the internet.

Ryan Long
nthDimension
 
Back
Top