최신 웹 개발 튜토리얼
 

반응 형 웹 디자인 - 프레임 워크


반응 형 디자인을 제공하는 많은 기존의 CSS 프레임 워크가있다.

그들은 무료로, 사용하기 쉽습니다.


W3.CSS 사용

반응 형 디자인을 만들 수있는 좋은 방법처럼 반응하는 스타일 시트를 사용하는 것입니다 W3.CSS

W3.CSS는 쉽게 어떤 크기로 좋은 보는 사이트를 개발 할 수있다; 데스크톱, 노트북, 태블릿, 전화 :

W3.CSS 데모

responsivenes을 볼 수있는 페이지의 크기를 조정!

런던

런던은 영국의 수도 도시입니다.

그것은 만 13 이상 주민의 대도시 지역으로, 영국에서 가장 인구가 많은 도시입니다.

파리

파리는 프랑스의 수도입니다.

파리 영역 이상 1 천 2 백만 주민과 함께 유럽에서 가장 큰 인구 밀집 지역 중 하나입니다.

도쿄

도쿄는 일본의 수도입니다.

그것은 수도권의 중심, 세계에서 가장 인구가 많은 대도시 지역입니다.

<!DOCTYPE html>
<html>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://www.w3ii.com/lib/w3.css">
<body>

<div class="w3-container orange">
  <h1>w3ii Demo</h1>
  <p>Resize this responsive page!</p>
</div>

<div class="w3-row-padding">

<div class="w3-third">
  <h2>London</h2>
  <p>London is the capital city of England.</p>
  <p>It is the most populous city in the United Kingdom,
  with a metropolitan area of over 13 million inhabitants.</p>
</div>

<div class="w3-third">
  <h2>Paris</h2>
  <p>Paris is the capital of France.</p>
  <p>The Paris area is one of the largest population centers in Europe,
  with more than 12 million inhabitants.</p>
</div>

<div class="w3-third">
  <h2>Tokyo</h2>
  <p>Tokyo is the capital of Japan.</p>
  <p>It is the center of the Greater Tokyo Area,
  and the most populous metropolitan area in the world.</p>
</div>

</div>

</body>
</html>
»그것을 자신을 시도

W3.CSS에 대한 자세한 내용은, 우리의 읽기 W3.CSS 자습서 .


부트 스트랩

또 다른 인기있는 프레임 워크는 반응 형 웹 페이지를 만들기 위해 HTML, CSS와 jQuery를 사용하여, 부트 스트랩입니다.

<!DOCTYPE html>
<html lang="en">
<head>
<title>Bootstrap Example</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
</head>
<body>

<div class="container">
  <div class="jumbotron">
    <h1>My First Bootstrap Page</h1>
  </div>
  <div class="row">
    <div class="col-sm-4">
      ...
    </div>
    <div class="col-sm-4">
      ...
    </div>
    <div class="col-sm-4">
    ...
    </div>
  </div>
</div>

</body>
</html>
»그것을 자신을 시도

부트 스트랩에 대한 자세한 내용은, 우리로 이동 부트 스트랩 자습서 .


해골

또 다른 인기있는 프레임 워크는 반응 형 웹 페이지를 만들기 위해 단지 CSS를 사용하여, 해골이다.

<!DOCTYPE html>
<html lang="en">
<head>
<title>Skeleton Example</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="skeleton.css">
<link rel="stylesheet" href="normalize.css">
<link href="http://fonts.googleapis.com/css?family=Raleway:400,300,600" rel="stylesheet" type="text/css">
</head>
<body>

<div class="container">
  <h1>My First Skeleton Page</h1>
  <div class="row">
    <div class="one column">
      ...
    </div>
    <div class="eleven columns">
      ...
    </div>
  </div>
  <div class="row">
    <div class="one-half column">
      ...
    </div>
    <div class="one-half column">
      ...
    </div>
  </div>
</div>

</body>
</html>
»그것을 자신을 시도