나는 960 grid system을 사용하여 레이아웃 프로토 타입을 만듭니다.960 그리드 시스템을 사용하는 CSS 디자인에 관한 질문
나는 # 000 (검은 색)에 탐색 및 내용 사이의 색상을 설정하고 싶습니다,하지만 난 방법을 알아낼 수 없습니다. 내가 현재 얻을 것은 : 공간 "사이에"내가 어떻게이 모든 색상을 지정합니까
- :
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-type" content="text/html;charset=UTF-8" /> <link rel="stylesheet" type="text/css" media="all" href="css/reset.css" /> <link rel="stylesheet" type="text/css" media="all" href="css/text.css" /> <link rel="stylesheet" type="text/css" media="all" href="css/960.css" /> <link rel="stylesheet" type="text/css" media="all" href="css/custom.css" /> <title>The system</title> </head> <body> <div class="container_16" id="base"> <div class="grid_16" id="header">Graphical banner</div> <div class="grid_16" id="logoutrow">Logout row</div> <div class="grid_3" id="navigation">Navigation</div> <div class="grid_13" id="content">Content</div> <div class="grid_16" id="footer">Footer</div> </div> </body> </html>
내 두 가지 질문 :
이 코드를 사용하여 내비게이션과 콘텐츠 사이의 것을 좋아합니까?
- 튜토리얼 this처럼 명확하지 않은 경우 내 레이아웃 만 표시됩니다. 왜? 색 사이에 들어
내가 성공하지 custom.css이 퍼팅 시도했다 :
는 960 그리드 시스템에 익숙하지만 여전히 시도하고 전체를 도와하려는 경우div#base {
background-color: #000;
}
960.css는 here입니다.
두 문제 해결 :
- 내 두 번째 질문은 월 아 가드에 의해 게시물에 아래 해결된다. 나는 nbsp XML 엔터티를 포함하지 않았고 빈 div를 가졌다. Firefox 3.x에서는 작동하지 않았습니다.
나의 현재 코드는 다음과 같습니다
이<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-type" content="text/html;charset=UTF-8" />
<link rel="stylesheet" type="text/css" media="all" href="css/reset.css" />
<link rel="stylesheet" type="text/css" media="all" href="css/text.css" />
<link rel="stylesheet" type="text/css" media="all" href="css/960.css" />
<link rel="stylesheet" type="text/css" media="all" href="css/custom.css" />
<title>The system</title>
</head>
<body>
<div class="container_16" id="base">
<div class="grid_16" id="header">Graphical banner</div>
<div class="clear"> </div>
<div class="grid_16" id="logoutrow">Logout row</div>
<div class="clear"> </div>
<div class="grid_16" id="navigation-content>
<div class="grid_3 alpha" id="navigation">Navigation</div>
<div class="grid_13 omega" id="content">Content</div>
</div>
<div class="clear"> </div>
<div class="grid_16" id="footer">Footer</div>
<div class="clear"> </div>
</div>
</body>
</html>
960 grid system 그리드 자식 노드가 특정 규칙을 따라야했다. 첫 번째 자식 노드는 알파 클래스이고 마지막 노드는 오메가 클래스입니다. 내가 위에하고있는 것은 무엇인가. GateKiller가 아래에 준 대답과의 차이점은 을 제외하고는가 해결책을 제시 한 것입니다.
죄송합니다. 나는 두 번째 질문에서 튜토리얼에 대한 링크를 잊어 버렸다. 지금 수정되었습니다. –
두 번째 질문에 대한 답변을 추가했습니다. – GateKiller
나는 다시 질문을 올렸다. 유익한 답변 주셔서 감사합니다. 알파 클래스와 오메가 클래스는 언급하지 않았지만 정확합니까? (위의 추가 된 부분을 참조하십시오. 올바른 경우 변경합니다.) –