CSS & ASP.NET Textbox Control

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?
 
R

Ryan Long

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top