CSS 기초 지식,스타일 을 알려 드 립 니 다.

4895 단어 CSS양식기초
CSS 란 무엇 인가
CSS(Cascading Style Sheet):스타일 시트 언어 를 레이 어드 합 니 다.
CSS 의 역할 은:
HTML 페이지 를 수식 하고 HTML 페이지 의 일부 요소 의 스타일 을 설정 하여 HTML 페이지 를 더욱 아름 답 게 합 니 다.
HTML 페이지 에 CSS 를 사용 하 는 두 가지 방식 을 삽입 합 니 다.
첫 번 째 방식:탭 내부 에서 style 속성 을 사용 하여 요소 의 CSS 스타일 을 설정 합 니 다.이 방식 을 내 연 정의 방식 이 라 고 합 니 다.문법 형식:
<태그 style="스타일 이름:스타일 값;스타일 이름:스타일 값;스타일 이름:스타일 값;...>
두 번 째 방식:외부 스타일 시트 파일 에 체인 을 연결 하 는 방식 이 가장 많이 사용 된다.(스타일 을 독립 된 xxx.css 파일 에 쓰 고 필요 한 웹 페이지 에 css 파일 을 직접 도입 하면 스타일 이 도 입 됩 니 다)문법 형식:

       ,      。
		xxx.css  
			1.html    
			2.html    
			3.html    
			4.html    
세 가지 방식 코드 전시
내 연 정의 방식

<!doctype html>
<html>
	<head>
		<title>HTML   CSS        :      </title>
	<head>
	<body>
		<!--
			width	    
			heght	    
			background-color	      
			display		    (none    ,block    )
		-->
		<div style="width: 300px;height: 300px;background-color: #CCFFFF; display: block;
		border-color: red;border-width: 3px;border-style: solid"></div>
		<!--        
			border: width style color
		-->
		<div style="width: 300px;height: 300px;background-color: #CCFFFF; display: block;
		border:  thick double yellow;  "></div>
	</body>
</html>
스타일 블록 방식

<!doctype html>
<html>
	<head>
		<title>HTML           :     </title>
		<style type="text/css">
			/*
				  CSS   
			*/
			/*
				id   
				#id{
					   :    ;
					   :    ;
					   :    ;
					........
				}
			*/
			#usernameErrorMsg{
				font-size: 12px;
				color: red;
			}

			/*
				     
				   {
					   :    ;
					   :    ;
					   :    ;
				}
			*/
			div{
				background-color: black;
				border: 1px solid red;
				width: 100px;
				height: 100px;
			}
			/*
				    
				.  {
					   :    ;
					   :    ;
					   :    ;
				}
			*/
			.myclass{
				border: 2px double blue;
				width: 400px;
				height: 30px
			}
		</style>
	</head>
	<body>
		<!--
			        12px,     
		-->
		<!--<span id="usernameErrorMsg" style="font-size: 12px;color: red">   ,       !</span>-->
		<span id="usernameErrorMsg"">   ,       !</span>
		<div></div>
		<div></div>
		<div></div>
		<!--class             。-->
		<br><br><br><br>
		<input type="text" class="myclass"/>
		<br><br><br><br><br>
		<select class="myclass">
			<option>  </option>
			<option>  </option>
			<option>  </option>
		</select>

	</body>
</html>
외부 스타일 시트 파일 에 체인 삽입
css 파일

a{
	text-decoration: none;
}
#baiduSpan{
	text-decoration: underline;
	cursor: wait;
}

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8">
		<title>HTML   CSS        :         </title>
		<!--  css-->
		<link type="text/css" rel="stylesheet" href="css/1.css"/>
	</head>
	<body>
		<a href="http://www.baidu.com">  </a>
		<span id="baiduSpan">       </span>
	</body>
</html>
다음은 자주 사용 하 는 스타일 입 니 다.
테두리
(1)

div{ border : 1px solid red; }
 (2)

div{ border-width : 1px; border-style : solid; border-color : red; }
숨기다

div{ display : none; }
글씨체

div{ font-size : 12px; color : red; }
텍스트 장식

a{ text-decoration : none; }

a{ text-decoration : underline; }
리스트

ul{ list-style-type : none; }
마우스 서 스 펜 션 효과 설정

:hover
포 지 셔 닝

div{ position : absolute; left : 100px; top : 100px; }
마우스 작은 손

div{ cursor : pointer; }
총결산
이 글 은 여기까지 입 니 다.당신 에 게 도움 을 줄 수 있 기 를 바 랍 니 다.또한 당신 이 우리 의 더 많은 내용 에 관심 을 가 져 주 기 를 바 랍 니 다!

좋은 웹페이지 즐겨찾기