Click here to Skip to main content
15,909,091 members
Home / Discussions / Web Development
   

Web Development

 
GeneralRe: Control not getting centered Pin
dkedar20103-Aug-10 0:30
dkedar20103-Aug-10 0:30 
GeneralRe: Control not getting centered Pin
User 17164923-Aug-10 1:19
professionalUser 17164923-Aug-10 1:19 
GeneralRe: Control not getting centered Pin
dkedar20103-Aug-10 18:57
dkedar20103-Aug-10 18:57 
GeneralRe: Control not getting centered Pin
januka1113-Aug-10 0:30
januka1113-Aug-10 0:30 
AnswerRe: Control not getting centered Pin
Prosanta Kundu online4-Aug-10 23:05
Prosanta Kundu online4-Aug-10 23:05 
GeneralRe: Control not getting centered Pin
dawmail3336-Aug-10 13:22
dawmail3336-Aug-10 13:22 
QuestionCSS only Transparent background in DIV with child elements opaque Pin
Dave McCool29-Jul-10 6:47
Dave McCool29-Jul-10 6:47 
AnswerRe: CSS only Transparent background in DIV with child elements opaque Pin
User 171649229-Jul-10 8:34
professionalUser 171649229-Jul-10 8:34 
Give this a try. Replace the .body_child with whatever class name you have used. The wrapper should give you 50% opacity (transparency) and the transparency removed for the child.

.body_wrapper {
   padding: 0 20px 20px;
   -webkit-border-radius: 5px;
   _display: inline;
   background-color: #000000;  /* the background          */
   filter:alpha(opacity=50);   /* Internet Explorer       */
   -moz-opacity:0.5;           /* Mozilla 1.6 and below   */
   -webkit-opacity:0.5;        /* Safari                  */
   opacity: 0.5;               /* newer Mozilla and CSS-3 */
}
.body_child {
   filter:alpha(opacity=100);  
   -moz-opacity:1.0;           
   opacity: 1.0;    
   -webkit-opacity: 1.0;          
}


modified 1-Aug-19 21:02pm.

GeneralRe: CSS only Transparent background in DIV with child elements opaque Pin
Dave McCool30-Jul-10 14:29
Dave McCool30-Jul-10 14:29 
GeneralRe: CSS only Transparent background in DIV with child elements opaque Pin
User 171649231-Jul-10 0:37
professionalUser 171649231-Jul-10 0:37 
GeneralRe: CSS only Transparent background in DIV with child elements opaque Pin
User 171649231-Jul-10 2:50
professionalUser 171649231-Jul-10 2:50 
AnswerRe: CSS only Transparent background in DIV with child elements opaque [modified] Pin
dawmail3336-Aug-10 13:26
dawmail3336-Aug-10 13:26 
GeneralRe: CSS only Transparent background in DIV with child elements opaque Pin
Dave McCool7-Aug-10 3:11
Dave McCool7-Aug-10 3:11 
GeneralRe: CSS only Transparent background in DIV with child elements opaque Pin
dawmail3337-Aug-10 3:12
dawmail3337-Aug-10 3:12 
GeneralRe: CSS only Transparent background in DIV with child elements opaque Pin
Dave McCool7-Aug-10 3:21
Dave McCool7-Aug-10 3:21 
GeneralRe: CSS only Transparent background in DIV with child elements opaque Pin
dawmail3337-Aug-10 3:24
dawmail3337-Aug-10 3:24 
GeneralRe: CSS only Transparent background in DIV with child elements opaque Pin
Dave McCool7-Aug-10 4:08
Dave McCool7-Aug-10 4:08 
GeneralRe: CSS only Transparent background in DIV with child elements opaque Pin
dawmail3337-Aug-10 4:13
dawmail3337-Aug-10 4:13 
GeneralRe: CSS only Transparent background in DIV with child elements opaque Pin
Dave McCool7-Aug-10 4:18
Dave McCool7-Aug-10 4:18 
GeneralRe: CSS only Transparent background in DIV with child elements opaque Pin
User 17164927-Aug-10 3:57
professionalUser 17164927-Aug-10 3:57 
GeneralRe: CSS only Transparent background in DIV with child elements opaque Pin
Dave McCool7-Aug-10 4:02
Dave McCool7-Aug-10 4:02 
Questionunicode issue Pin
varsh1228-Jul-10 0:44
varsh1228-Jul-10 0:44 
QuestionRe: unicode issue Pin
Yusuf6-Aug-10 4:27
Yusuf6-Aug-10 4:27 
Questionhow to use jquery to be like this?? Pin
he.david825-Jul-10 23:30
he.david825-Jul-10 23:30 
AnswerRe: how to use jquery to be like this?? Pin
R. Giskard Reventlov28-Jul-10 1:01
R. Giskard Reventlov28-Jul-10 1:01 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.