• 회원가입
  • 로그인
  • 구글아이디로 로그인

[responsive] CSS - RES Frameworks - (반응형 프레임워크) - 반응형홈페이지틀

대표적인 반응형 프레임워크

 

1. W3.CSS 활용

2. BS 활용 (= 부트스트랩 활용)

 

※ 프레임워크 : 미리 만들어놓은 틀

 

 

W3.CSS 예제

 

<!DOCTYPE html>

<html>

<title>홈짱닷컴</title>

<meta name="viewport" content="width=device-width, initial-scale=1">

<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">

<body>


<div class="w3-container w3-green">

  <h1>홈짱닷컴</h1> 

  <p>Homzzang.com</p> 

</div>


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

  <div class="w3-third">

    <h2>HTML</h2>

    <p>홈페이지 기본 뼈대</p>

  </div>


  <div class="w3-third">

    <h2>CSS</h2>

    <p>홈페이지 주요 디자인</p>

  </div>


  <div class="w3-third">

    <h2>JS</h2>

    <p>홈페이지 동적 기능</p>

  </div>

</div>


</body>

</html>


결과보기

 

 

 

BS 예제

 

<!DOCTYPE html>

<html lang="kr">

<head>

  <title>홈짱닷컴</title>

  <meta charset="utf-8">

  <meta name="viewport" content="width=device-width, initial-scale=1">

  <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">

  <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>

  <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>

</head>

<body>


<div class="container">

  <div class="jumbotron">

    <h1>홈짱닷컴</h1>

    <p>Homzzang.com</p> 

  </div>

  <div class="row">

    <div class="col-sm-4">

      <h3>HTML</h3>

      <p>홈페이지 뼈대</p>

    </div>

    <div class="col-sm-4">

      <h3>CSS</h3>

      <p>홈페이지 디자인</p>

    </div>

    <div class="col-sm-4">

      <h3>JS</h3>    

      <p>홈페이지 기능</p>

    </div>

  </div>

</div>


</body>

</html>


결과보기

※ BS 그리드에 대해서 공부 !!

방문 감사합니다. (즐겨찾기 등록: Ctrl + D)

분류 제목
background CSS - background-size 속성 ★ - 배경이미지 크기 (IE9) ※ 배경이미지 중첩
color CSS - RGBA , HSL , HSLA , opacity - (색상코드)
gradient CSS - Gradient (그레이디언트 = 그라디언트) 종류 - (색번짐변화=색변화) : IE 10
shadow CSS - text-shadow 속성 - 글자 그림자/음영 효과 주기 (= text-shadow속성 = 텍스…
shadow CSS - box-shadow 속성 - 요소 그림자 효과 주기 (= box-shadow속성 = 박스섀도속성)…
text CSS - text-align-last 속성 - 단락마지막라인정렬 (= text-align-last속성 = …
text CSS - text-emphasis 속성 - 텍스트 강조마크의 '모먕/색깔' 일괄 지정 (= 텍스트 글자 위…
text CSS - text-justify 속성 - 텍스트 좌우균분정렬 세부설정 (= text-justify속성 = …
text CSS - text-overflow 속성 ★ - 영역 이탈 글자 처리 (= text-overflow속성 = …
text CSS - word-break 속성 ★ - 한중일 외의 언어 (단어기준/글자기준) 줄바꿈규칙 지정 (= 줄…
text CSS - word-wrap 속성 ★ - 단어줄바꿈 위해 긴단어쪼개기 (= 긴단어깨기 = 긴단어나누기 = w…
font CSS - @font-face 구문 - 다운받은 웹폰트적용 (= @font-face쿼리 = 다운글꼴적용 = …
transform CSS - transform 속성 ★ - 요소 (회전/비틀기/크기확대) 변환 + 마우스 허버 시 줌효과 (=…
transform CSS - transform-origin 속성 - 변형요소 위치 변경. ( = transform-origin…
transform CSS - transform-style 속성 - 중첩요소를 3D공간에서 표시 방법 (= transform-s…
transform CSS - perspective 속성 - 3D요소의 원근 조망. (= perspective속성 = 퍼스펙티브…
transform CSS - perspective-origin 속성 - 3D요소 바라보는 위치 (= perspective-or…
transform CSS - backface-visibility 속성 - 3D요소 뒷면 노출 여부. (= backface-vi…
transition CSS - transition 속성 ★★★ - 지정시간 동안 천천히 변화 (= transition속성 = 트…
transition CSS - transition-delay 속성 - 트랜지션 시작 대기 시간 (= transition-dela…
8/25
목록
찾아주셔서 감사합니다. Since 2012