ProgramingTip

점선

bestdevel 2020. 10. 20. 07:54
반응형

점선 태그 를 만드는 방법은 무엇입니까?


이 질문에 이미 답변이 있습니다.

CSS를 사용하여 점선 또는 모든 유형의 hr 라인 (이중, 파선 등)을 어떻게 만들 수 있습니까?

<hr style="...what should I write?..." />

아니면 다른 트릭이 있습니까?


당신은 그냥 번만 할 수 있습니다 <hr style="border-top: dotted 1px;" />. 작동합니다.


hr {
    border-top:1px dotted #000;
    /*Rest of stuff here*/
}

hr {
    border: 1px dotted #ff0000;
    border-style: none none dotted; 
    color: #fff; 
    background-color: #fff;
}

이 시도


넌 할 수있어 :

<hr style="border: 1px dashed black;" />

스템 : http://jsfiddle.net/JMfC9/


<hr>태그는 행사가 짧은 요소입니다 :

<hr style="border-style: dotted;" />

넌 할 수있어 :

<hr style="border-bottom: dotted 1px #000" />

참고 URL : https://stackoverflow.com/questions/16819864/how-to-create-a-dotted-hr-tag

반응형