Domain Registration
    Free Hosting
    Web Hosting
    E-mail Accounts
    FAQs
    Contact Us

    Learn ASP
    Databases
    Articles
    Terms of Service
    Home
You know where you write in textboxes on paper forms; Well Windows' text boxes look nothing like that do they? Well this is where CSS comes to your aid. Through style sheets, you can turn off the edges to make the text box look more realistic. Take a look at these examples.

all i did was assign a class name to the two textboxes. I specified in the HEAD, the borders for class name:twoborders, and oneborders. This is the complete style code:
<STYLE TYPE="TEXT/CSS">
.twoborders { border-left:2px solid;border-bottom:2px solid;
              border-right:0px;border-top:0px;}
.oneborders { border-left:0px;border-bottom:2px solid;
              border-right:0px;border-top:0px;}
</STYLE>