art15 Posted April 9, 2008 Share Posted April 9, 2008 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 Link to comment https://forums.phpfreaks.com/topic/100244-text-area-border-not-visible-in-php-form/ Share on other sites More sharing options...
art15 Posted April 9, 2008 Author Share Posted April 9, 2008 Come on guys please reply Link to comment https://forums.phpfreaks.com/topic/100244-text-area-border-not-visible-in-php-form/#findComment-512556 Share on other sites More sharing options...
unsider Posted April 9, 2008 Share Posted April 9, 2008 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. Link to comment https://forums.phpfreaks.com/topic/100244-text-area-border-not-visible-in-php-form/#findComment-512563 Share on other sites More sharing options...
discomatt Posted April 9, 2008 Share Posted April 9, 2008 The reason you may not be getting a quick solution may be related to the fact that this has nothing to do with PHP Link to comment https://forums.phpfreaks.com/topic/100244-text-area-border-not-visible-in-php-form/#findComment-512570 Share on other sites More sharing options...
ToonMariner Posted April 9, 2008 Share Posted April 9, 2008 no value or max length attribute for the textarea tag Link to comment https://forums.phpfreaks.com/topic/100244-text-area-border-not-visible-in-php-form/#findComment-512790 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.