Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
所以我的网站主页不会在 Firefox 或 IE 中正确居中。它似乎在 chrome 和 safari 中运行良好。我的网站可以在http://koltondallas.com/找到我提前道歉,因为我确定这很容易
你有一个错误的类型属性:
这个: <link href="style.css" type="text/ccss" rel="stylesheet"></link>
<link href="style.css" type="text/ccss" rel="stylesheet"></link>
应该: <link href="style.css" type="text/css" rel="stylesheet"></link>
<link href="style.css" type="text/css" rel="stylesheet"></link>