I want to arrange css code. My code is:
.fb_icon{height:30px; width:50px; background:#FFF; margin:0 0 0 700px;}
.fb_img{height:30px; width:50px;}
I don't want any space in my css file. Please help me. Thanks for great help.
I want to arrange css code. My code is:
.fb_icon{height:30px; width:50px; background:#FFF; margin:0 0 0 700px;}
.fb_img{height:30px; width:50px;}
I don't want any space in my css file. Please help me. Thanks for great help.
 
    
     
    
    You appear to be asking about the "minifier" concept.
Here are a few options:
How to arrange CSS code:
Before:
.fb_icon{height:30px; width:50px; background:#FFF; margin:0 0 0 700px;}
.fb_img{height:30px; width:50px;}
After:
.fb_icon {
    height:30px;
    width:50px;
    background:#FFF;
    margin:0 0 0 700px;
}
.fb_img {
    height:30px;
    width:50px;
}
Other possibility:
.fb_icon{height:30px;width:50px;background:#FFF;margin:0 0 0 700px;}
.fb_img{height:30px;width:50px;}
 
    
    There you go:
.fb_icon{height:30px;width:50px;background:#FFF;margin:0 0 0 700px}.fb_img{height:30px;width:50px}
