Menu
Forums
All threads
Latest threads
New posts
Trending threads
New posts
Search forums
Trending
What's new
New posts
New profile posts
Latest activity
Members
Current visitors
New profile posts
Search profile posts
Upgrades
Log in
Register
What's new
Search
Search
Search titles only
By:
All threads
Latest threads
New posts
Trending threads
New posts
Search forums
Menu
Log in
Register
Navigation
Install the app
Install
More options
Contact us
Close Menu
Forums
Software Development
Programming
Programming Q&A
[HTML & CSS] Help!
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
<blockquote data-quote="Markshall" data-source="post: 239252" data-attributes="member: 1872"><p><center> is deprecated as of HTML5.</p><p></p><p>Try this (I'm against internal CSS styling, but I can't be arsed making two files and doing the <link /> tag, you can do that yourself.):</p><p></p><p>[HTML]<!DOCTYPE html></p><p><html></p><p><head></p><p> <title>lol</title></p><p> <style type="text/css"></p><p> body {</p><p> background: gray;</p><p> }</p><p> </p><p> div.container {</p><p> margin: 0 auto;</p><p> width: 960px;</p><p> }</p><p> </p><p> div.profilebox {</p><p> background: #ffffff;</p><p> padding: 20px;</p><p> border-radius: 3px 6px 9px 12px;</p><p> height: 20px;</p><p> width: 200px;</p><p> }</p><p> </style></p><p></head></p><p></p><p><body></p><p> <div class="container"></p><p> <div class="profilebox"></div></p><p> </div></p><p></body></p><p></html>[/HTML]</p></blockquote><p></p>
[QUOTE="Markshall, post: 239252, member: 1872"] <center> is deprecated as of HTML5. Try this (I'm against internal CSS styling, but I can't be arsed making two files and doing the <link /> tag, you can do that yourself.): [HTML]<!DOCTYPE html> <html> <head> <title>lol</title> <style type="text/css"> body { background: gray; } div.container { margin: 0 auto; width: 960px; } div.profilebox { background: #ffffff; padding: 20px; border-radius: 3px 6px 9px 12px; height: 20px; width: 200px; } </style> </head> <body> <div class="container"> <div class="profilebox"></div> </div> </body> </html>[/HTML] [/QUOTE]
Insert quotes…
Verification
Post reply
Forums
Software Development
Programming
Programming Q&A
[HTML & CSS] Help!
Top