text box transparency?
Moderator: General Moderators
-
malcolmboston
- DevNet Resident
- Posts: 1826
- Joined: Tue Nov 18, 2003 1:09 pm
- Location: Middlesbrough, UK
text box transparency?
was just wondering if this is possible, im assuming it can be done with flash but is there an HTML "version" utilising CSS properties?
im not after a completely transparent (might as well be a hidden field) but rather say 30% transparency so i blends in with my page
.......................................?
Mal
im not after a completely transparent (might as well be a hidden field) but rather say 30% transparency so i blends in with my page
.......................................?
Mal
yes, try here for examlpes:
http://ww.google.com/search?hl=en&ie=UT ... ty&spell=1
http://ww.google.com/search?hl=en&ie=UT ... ty&spell=1
-
malcolmboston
- DevNet Resident
- Posts: 1826
- Joined: Tue Nov 18, 2003 1:09 pm
- Location: Middlesbrough, UK
here ya go
http://www.infinit-e.com/teststuff/transp.php
Just click update invoice numbers AFTER the large background image has loaded.
Mark
http://www.infinit-e.com/teststuff/transp.php
Just click update invoice numbers AFTER the large background image has loaded.
Mark
-
malcolmboston
- DevNet Resident
- Posts: 1826
- Joined: Tue Nov 18, 2003 1:09 pm
- Location: Middlesbrough, UK
-
malcolmboston
- DevNet Resident
- Posts: 1826
- Joined: Tue Nov 18, 2003 1:09 pm
- Location: Middlesbrough, UK
ah, bloody javascript
im assuming this is the attribute.....
??
im assuming this is the attribute.....
Code: Select all
<!-- CSS -->
filter:alpha(opacity=90);
-moz-opacity:90%;-
malcolmboston
- DevNet Resident
- Posts: 1826
- Joined: Tue Nov 18, 2003 1:09 pm
- Location: Middlesbrough, UK
- feyd
- Neighborhood Spidermoddy
- Posts: 31559
- Joined: Mon Mar 29, 2004 3:24 pm
- Location: Bothell, Washington, USA
Code: Select all
-moz-opacity: XX%Code: Select all
-moz-opacity: .XXSorry to bring up such a dead thread, but I was hoping somebody could expand on this idea for me.
I know how to make something transparent, but is there anyway to make it's child elements not transparent?
What I want...
<div 50% trans>
<div 20%></div>
</div>
what I get...
<div 50% trans>
<div 20%*50%></div>
</div>
Is there anyway to NOT have this happen? I understand why it's happening, but...well it may cause me to pursue a life of drugs and violence. Sure the drugs are ok, but I'm a pretty peaceful guy.
I know how to make something transparent, but is there anyway to make it's child elements not transparent?
What I want...
<div 50% trans>
<div 20%></div>
</div>
what I get...
<div 50% trans>
<div 20%*50%></div>
</div>
Is there anyway to NOT have this happen? I understand why it's happening, but...well it may cause me to pursue a life of drugs and violence. Sure the drugs are ok, but I'm a pretty peaceful guy.