|
|
|
#1 |
|
Messages: n/a
Hébergeur: |
How do I make a input text box appear like a fill in the blank line. i.e. 1. is it possible to hide some of its borders and display only the bottom border? 2.to place is just above a sereies of underscore charactors and have it borderless? (how) any other way? -- When you argue with a fool, chances are he's doing the same |
|
|
|
#2 |
|
Messages: n/a
Hébergeur: |
On Sun, 27 Apr 2008 19:30:39 +0200, Cosmic programmer
<not-my-email@nowhere.com> wrote: > How do I make a input text box appear like a fill in the blank line. i.e. > > 1. is it possible to hide some of its borders and display only the bottom > border? > 2.to place is just above a sereies of underscore charactors and have it > borderless? (how) Ask in comp.infosystems.www.authoring.stylesheets, or just look into the CSS specs. Nothing to do with PHP. -- Rik Wasmus |
|
|
|
#3 |
|
Messages: n/a
Hébergeur: |
Cosmic programmer wrote:
> How do I make a input text box appear like a fill in the blank line. i.e. > > 1. is it possible to hide some of its borders and display only the bottom > border? > 2.to place is just above a sereies of underscore charactors and have it > borderless? (how) > > any other way? > > -- > When you argue with a fool, chances are he's doing the same > > > This has nothing to do with PHP. -- ================== Remove the "x" from my email address Jerry Stuckle JDS Computer Training Corp. jstucklex@attglobal.net ================== |
|
|
|
#4 |
|
Messages: n/a
Hébergeur: |
Jerry Stuckle wrote:
> Cosmic programmer wrote: > > How do I make a input text box appear like a fill in the blank > > line. i.e. > > > > 1. is it possible to hide some of its borders and display only the > > bottom border? 2.to place is just above a sereies of underscore > > charactors and have it borderless? (how) > > > > any other way? > > > > -- > > When you argue with a fool, chances are he's doing the same > > This has nothing to do with PHP. I'm sure 'cosmic' is grateful for your ful answer, you retard -- |
|
|
|
#5 |
|
Messages: n/a
Hébergeur: |
Cosmic programmer wrote:
> How do I make a input text box appear like a fill in the blank line. i.e. > > 1. is it possible to hide some of its borders and display only the bottom > border? > 2.to place is just above a sereies of underscore charactors and have it > borderless? (how) > > any other way? > > -- > When you argue with a fool, chances are he's doing the same > > Stuckle is right this time. But what the heck. Try this: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html> <head> <title>Borderless Input</title> <style type="text/css"> #nobbis { border: 3px solid red; border-top-style: none; border-left-style: none; border-right-style: none; } </style> </head> <body style="background-color: #dff;"> <form action="#" method="get"> <div> <input id="nobbis" type="text" name="nobbis" value="Sample text" /> </div> </form> </body> </html> |
|
|
|
#6 |
|
Messages: n/a
Hébergeur: |
> Cosmic programmer wrote:
>> How do I make a input text box appear like a fill in the blank line. >> i.e. 1. is it possible to hide some of its borders and display only >> the >> bottom border? >> 2.to place is just above a sereies of underscore charactors and have >> it borderless? (how) >> >> any other way? >> >> -- >> When you argue with a fool, chances are he's doing the same >> >> >> > > This has nothing to do with PHP. You don't know that. You look more and more like a troller the more you post lately. |
|
|
|
#7 |
|
Messages: n/a
Hébergeur: |
Twayne wrote:
> > Cosmic programmer wrote: > > > How do I make a input text box appear like a fill in the blank > > > line. i.e. 1. is it possible to hide some of its borders and > > > display only the bottom border? > > > 2.to place is just above a sereies of underscore charactors and > > > have it borderless? (how) > > > > > > any other way? > > > > > > -- > > > When you argue with a fool, chances are he's doing the same > > > > > > > > > > > > > This has nothing to do with PHP. > > You don't know that. You look more and more like a troller the more > you post lately. Well I *hate* to say I told you so, but... -- |
|
|
|
#8 |
|
Messages: n/a
Hébergeur: |
Twayne wrote:
>> Cosmic programmer wrote: >>> How do I make a input text box appear like a fill in the blank line. >>> i.e. 1. is it possible to hide some of its borders and display only >>> the >>> bottom border? >>> 2.to place is just above a sereies of underscore charactors and have >>> it borderless? (how) >>> >>> any other way? >>> >>> -- >>> When you argue with a fool, chances are he's doing the same >>> >>> >>> >> This has nothing to do with PHP. > > You don't know that. You look more and more like a troller the more you > post lately. > > > > Yes, I DO know that. PHP is server-side, and has nothing to do with how the data is displayed. All of that is HTML or CSS - which should be followed up in the appropriate newsgroups. But if you knew ANYTHING - you would understand that. -- ================== Remove the "x" from my email address Jerry Stuckle JDS Computer Training Corp. jstucklex@attglobal.net ================== |
|
|
|
#9 |
|
Messages: n/a
Hébergeur: |
"Preventer of Work" <not_this@nospam.xxx> wrote in message news:fW6Rj.97073$rd2.57317@pd7urf3no... > Cosmic programmer wrote: >> How do I make a input text box appear like a fill in the blank line. i.e. >> >> 1. is it possible to hide some of its borders and display only the bottom >> border? >> 2.to place is just above a sereies of underscore charactors and have it >> borderless? (how) >> >> any other way? >> >> -- >> When you argue with a fool, chances are he's doing the same > > Stuckle is right this time. > But what the heck. Try this: > > > <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" > "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> > <html> > <head> > <title>Borderless Input</title> > <style type="text/css"> > #nobbis { > border: 3px solid red; > border-top-style: none; > border-left-style: none; > border-right-style: none; > } > </style> > </head> > <body style="background-color: #dff;"> > <form action="#" method="get"> > <div> > <input id="nobbis" type="text" name="nobbis" value="Sample text" /> > </div> > </form> > </body> > </html> Thanks really! I'm working on a PHP project so added this group. will be carefull next time. |
|
|
|
#10 |
|
Messages: n/a
Hébergeur: |
Preventer of Work wrote:
> Cosmic programmer wrote: >> How do I make a input text box appear like a fill in the blank line. i.e. >> >> 1. is it possible to hide some of its borders and display only the >> bottom border? >> 2.to place is just above a sereies of underscore charactors and have >> it borderless? (how) >> >> any other way? >> >> -- >> When you argue with a fool, chances are he's doing the same >> > > Stuckle is right this time. Right, but pedantically unful. And not right to act like its HIS NG. > But what the heck. Try this: > > > <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" > "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> > <html> > <head> > <title>Borderless Input</title> > <style type="text/css"> > #nobbis { > border: 3px solid red; > border-top-style: none; > border-left-style: none; > border-right-style: none; > } > </style> > </head> > <body style="background-color: #dff;"> > <form action="#" method="get"> > <div> > <input id="nobbis" type="text" name="nobbis" value="Sample text" /> > </div> > </form> > </body> > </html> |
|
|
|
#11 |
|
Messages: n/a
Hébergeur: |
> Twayne wrote:
>>> Cosmic programmer wrote: >>>> How do I make a input text box appear like a fill in the blank >>>> line. i.e. 1. is it possible to hide some of its borders and >>>> display only the >>>> bottom border? >>>> 2.to place is just above a sereies of underscore charactors and >>>> have it borderless? (how) >>>> >>>> any other way? >>>> >>>> -- >>>> When you argue with a fool, chances are he's doing the same >>>> >>>> >>>> >>> This has nothing to do with PHP. >> >> You don't know that. You look more and more like a troller the more >> you post lately. >> >> >> >> > > Yes, I DO know that. PHP is server-side, and has nothing to do with > how the data is displayed. All of that is HTML or CSS - which should > be followed up in the appropriate newsgroups. > > But if you knew ANYTHING - you would understand that. No, you're obviously being myopic, maybe on purpose. PHP is executed server-side, but ... it can be written/implemented by either side, depending. When PHP executes, I can only wonder where you think its output may go. -- Regards, Twayne Open Office isn't just for wimps anymore; OOo is a GREAT MS Office replacement www.openoffice.org |
|
|
|
#12 |
|
Messages: n/a
Hébergeur: |
Twayne wrote:
>> Twayne wrote: >>>> Cosmic programmer wrote: >>>>> How do I make a input text box appear like a fill in the blank >>>>> line. i.e. 1. is it possible to hide some of its borders and >>>>> display only the >>>>> bottom border? >>>>> 2.to place is just above a sereies of underscore charactors and >>>>> have it borderless? (how) >>>>> >>>>> any other way? >>>>> >>>>> -- >>>>> When you argue with a fool, chances are he's doing the same >>>>> >>>>> >>>>> >>>> This has nothing to do with PHP. >>> You don't know that. You look more and more like a troller the more >>> you post lately. >>> >>> >>> >>> >> Yes, I DO know that. PHP is server-side, and has nothing to do with >> how the data is displayed. All of that is HTML or CSS - which should >> be followed up in the appropriate newsgroups. >> >> But if you knew ANYTHING - you would understand that. > > No, you're obviously being myopic, maybe on purpose. PHP is executed > server-side, but ... it can be written/implemented by either side, > depending. When PHP executes, I can only wonder where you think its > output may go. No, you're being asinine. PHP doesn't create the text box in the browser, (X)HTML and CSS does. All PHP *might* do is echo the statements. PHP running on the server cannot affect how the text box looks in the browser - other than generating the proper (X)HTML and CSS. And PHP does not run on the client's browser. -- ================== Remove the "x" from my email address Jerry Stuckle JDS Computer Training Corp. jstucklex@attglobal.net ================== |
|
|
|
#13 |
|
Messages: n/a
Hébergeur: |
Twayne schrieb:
>> Twayne wrote: >>>> Cosmic programmer wrote: >>>>> How do I make a input text box appear like a fill in the blank >>>>> line. i.e. 1. is it possible to hide some of its borders and >>>>> display only the >>>>> bottom border? >>>>> 2.to place is just above a sereies of underscore charactors and >>>>> have it borderless? (how) >>>>> >>>>> any other way? >>>>> >>>>> -- >>>>> When you argue with a fool, chances are he's doing the same >>>>> >>>>> >>>>> >>>> This has nothing to do with PHP. >>> You don't know that. You look more and more like a troller the more >>> you post lately. >>> >>> >>> >>> >> Yes, I DO know that. PHP is server-side, and has nothing to do with >> how the data is displayed. All of that is HTML or CSS - which should >> be followed up in the appropriate newsgroups. >> >> But if you knew ANYTHING - you would understand that. > > No, you're obviously being myopic, maybe on purpose. PHP is executed > server-side, but ... it can be written/implemented by either side, > depending. When PHP executes, I can only wonder where you think its > output may go. This is nonsense. Of course how an input field displays is a HTML and CSS question. |
|
![]() |
| Outils de la discussion | |
|
|