'css'에 해당되는 글 3건

border line

2020/CSS 2020. 3. 23. 14:59
반응형

solid : 실선

dotted : 점선

dashed 파선

double: 두 줄선

groove 홈이 파여있는 모양

ridge 솟은 모양

inset 요소 전체가 들어간 모양

outset 요소 전체가 나온 모양

 

 

 

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Document</title>
    <style>
      div {
        margin: 10px;
        display: inline;
      }
      .A {
        width: 100px;
        height: 100px;
        border: 10px solid red;
      }
      .B {
        width: 100px;
        height: 100px;
        border: 10px dotted red;
      }
      .C {
        width: 100px;
        height: 100px;
        border: 10px dashed red;
      }
      .D {
        width: 100px;
        height: 100px;
        border: 10px double red;
      }
      .E {
        width: 100px;
        height: 100px;
        border: 10px groove red;
      }
      .F {
        width: 100px;
        height: 100px;
        border: 10px ridge red;
      }
      .G {
        width: 100px;
        height: 100px;
        border: 10px inset red;
      }
      .H {
        width: 100px;
        height: 100px;
        border: 10px outset red;
      }
    </style>
  </head>
  <body>
    <div class="A">solid</div>
    <div class="B">dotted</div>
    <div class="C">dashed</div>
    <div class="D">double</div>
    <div class="E">groove</div>
    <div class="F">ridge</div>
    <div class="G">insert</div>
    <div class="H">outset</div>
  </body>
</html>
반응형

'2020 > CSS' 카테고리의 다른 글

text decoration  (0) 2020.03.23
css: overflow  (0) 2020.03.23
box-sizing: border-box  (0) 2020.03.23
reset css  (0) 2020.02.19
CSS 글 목록이 아래에서 위로 올라오는 기능 fadeIn  (0) 2020.02.18
블로그 이미지

꽃꽂이하는개발자

,

css focus 기능

2020/CSS 2020. 2. 18. 18:45
반응형

input 같은 요소를 클릭해 선택해서 입력하는 동안이나 선택해 있는 동안의 스타일 지정을 합니다.

 

예제 1

<style>
input:focus {background-color: yellow;}
</style>

<form>
<input type="text" name="focus">
<input type="submit" value="Submit">
</form> 

input창을 클릭하면 노란색으로 바뀝니다.

결과 확인은

https://codepen.io/sinbi/pen/WNeYdoV

 

WNeYdoV

...

codepen.io

예제 2

<style>
input {background-color:gray;}
input:hover {background-color:red;}
input:active {color:white;background-color:blue;}
input:focus {color:green;background-color:yellow;}
</style>
 
<input  type="text"/>

https://codepen.io/sinbi/pen/gOYQoWZ

반응형
블로그 이미지

꽃꽂이하는개발자

,
반응형

페이지에서 색상 변경 가능

ColorZilla: https://chrome.google.com/webstore/detail/colorzilla/bhlhnicpbhignbdhedgjhgdocnmhomnp?hl=en

 

ColorZilla

Advanced Eyedropper, Color Picker, Gradient Generator and other colorful goodies

chrome.google.com

사이즈 확인 사이트

PageRulerRedux: https://chrome.google.com/webstore/detail/page-ruler-redux/giejhjebcalaheckengmchjekofhhmal?hl=en

반응형

'2020 > CSS' 카테고리의 다른 글

css focus 기능  (0) 2020.02.18
gradient 추천 사이트  (0) 2020.02.18
css media queries  (0) 2020.02.16
css animation @keyframes  (0) 2020.02.16
CSS Transformations  (0) 2020.02.16
블로그 이미지

꽃꽂이하는개발자

,