Guest Anna Hussie Posted April 25, 2011 Report Share Posted April 25, 2011 I'm really new... what is a wrapper in regards to CSS language? Quote Link to comment Share on other sites More sharing options...
virtual Posted April 25, 2011 Report Share Posted April 25, 2011 Well in the real world a "wrapper" as it's name implies is something that wraps around an object and contains it e.g. "wrapping paper" In CSS it is exactly the same thing, but if you want to name it "hoodad" you can. Quote Link to comment Share on other sites More sharing options...
falkencreative Posted April 25, 2011 Report Share Posted April 25, 2011 Just to expand on what @virtual said above, it is often a div that surrounds the rest of the code in your site, often used to center the site on the screen. For example: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <title></title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> </head> <body> <div id="wrapper"> ... additional divs and content here... </div> </body> </html> Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.