제목 옆에 선 스타일
2522 단어 CSS
style.css
h1 {
background: none;
position: relative;
text-align: center;
width: 500px;
margin: 0 auto;
}
h1::before {
border-top: 2px solid #000;
content: "";
position: absolute;
top: 50%;
left: 0;
width: 100%;
}
h1 span {
background-color: white;
display: inline-block;
padding: 0 1em;
position: relative;
}
index.html<h1><span>タイトルテキスト</span></h1>
가끔 써야 하기 때문에 필기를 해야 한다.
Reference
이 문제에 관하여(제목 옆에 선 스타일), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/Takuya_Kouyama/items/c509906803cf8072b2be텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)