Jump to content

Text area border not visible in php form.


art15

Recommended Posts

Hi Guys,

 

I have a text area in the php form, which reads like:  <textarea name="yourcomments" cols="30"  rows="5"  ></textarea>, however when I see it on the web page the border shows black line border on left & top side but I can't see the border line on the right side and bottom. I tried to use the style.border.thick but it does'nt seems to work.

 

Please help

 

I'm not completely sure if this would be a valid solution, but I think if I understand you..

 

You want to change textbox properties?

 

Best option is to use CSS.

 

<textarea name="yourcomments"  cols="30" rows="5" class="content_box" maxlength="" value="">

 

.content_box {
background-color: #000000;
border: 1px solid #292929;
color: #FFFFFF;
width: 145px;
}

 

It also may be your browser, or an issue out of your control.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.