Posts /

CSS:column-rule-style

Twitter Facebook Google+
06 Dec 2018
div {
    -webkit-column-rule-style: dotted; /* Chrome, Safari, Opera */
    -moz-column-rule-style: dotted; /* Firefox */
    column-rule-style: dotted;
}

CSS :column-rule-style

column-rule-style속성은 열 사이의 규칙 스타일을 지정합니다.

속성

column-rule-style: none|hidden|dotted|dashed|solid|double|groove|ridge|inset|outset|initial|inherit;


Twitter Facebook Google+