Why isnt this page pulling up [closed]
I have this page and in firefox it pulls u开发者_开发问答p fine but safari it doesnt...any ideas
I get a 404 for favicon but I think the error is infact the CSS rule on line 10.
<!-- padding-top: 0px;
Where you trying to comment out that line? /* comment */
is what you're after.
This block at the top of your page has a HTML comment that isn't finished, thus commenting out the rest of your page.
div.padded {
<!-- padding-top: 0px;
padding-right: 0px;
padding-bottom: 0px;
padding-left: 00px;
margin-top: 0px;
margin-right: 200px;
margin-bottom: 10px;
margin-left: 10px;
}
Change to
div.padded {
padding-top: 0px;
padding-right: 0px;
padding-bottom: 0px;
padding-left: 00px;
margin-top: 0px;
margin-right: 200px;
margin-bottom: 10px;
margin-left: 10px;
}
精彩评论