我現在有點困惑......我想製作一個小的HP,並且已經在我的DIV中添加了已定義的CSS標記。如果我在php文件中定義CSS,則DIV正確使用它,但如果我在單獨的CSS文件中嘗試相同的代碼,則它僅應用正文背景。<style> in HTML works,but not as CSS
我希望你能在這種情況下幫助我。
這是它的樣子:
@charset "utf-8";
/* CSS Document */
.index_bg
{
\t background-color:#CCCCCC;
};
#index_div
{
background-color:#FFFFFF;
\t width:2000px;
\t height:2000px;
\t max-width:80vw;
\t max-height:80vh;
\t margin:10vh auto 10vh auto; \t
}
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>3D Solutions</title>
<link href="css/style.css" rel="stylesheet" type="text/css" />
</head>
<body class="index_bg">
<div id="index_div">
Lorem Ipsum.
</div>
</body>
</html>
後... 。哇,多麼失敗:D非常感謝! – Jokeboy
@Jokeboy沒問題,很高興我能幫助你 – Steve