css实现小三角(原理) - 林七七





<span style="font-size: 15px;"><span style="color: #800000;">div</span>{<span style="color: #ff0000;"> width</span>:<span style="color: #0000ff;"> 0px</span>;<span style="color: #ff0000;"> height</span>:<span style="color: #0000ff;"> 0px</span>;<span style="color: #ff0000;"> border-width</span>:<span style="color: #0000ff;"> 20px</span>;<span style="color: #ff0000;"> border-style</span>:<span style="color: #0000ff;"> solid</span>;<span style="color: #ff0000;"> border-color</span>:<span style="color: #0000ff;"> lightgreen pink yellow lightblue</span>; }</span>


<span style="font-size: 15px;"><span style="color: #800000;">#triangle</span>{<span style="color: #ff0000;"> width</span>:<span style="color: #0000ff;"> 0px</span>;<span style="color: #ff0000;"> height</span>:<span style="color: #0000ff;"> 0px</span>;<span style="color: #ff0000;"> border-width</span>:<span style="color: #0000ff;"> 20px</span>;<span style="color: #ff0000;"> border-style</span>:<span style="color: #0000ff;"> solid</span>;<span style="color: #ff0000;"> border-color</span>:<span style="color: #0000ff;"> transparent transparent yellow transparent</span>; }</span>
<span style="font-size: 15px;"><span style="color: #008080;"> 1</span> <span style="color: #800000;">#triangle</span>{ <span style="color: #008080;"> 2</span> <span style="color: #ff0000;"> width</span>:<span style="color: #0000ff;"> 0px</span>; <span style="color: #008080;"> 3</span> <span style="color: #ff0000;"> height</span>:<span style="color: #0000ff;"> 0px</span>; <strong><span style="color: #008080;"> 4</span> <span style="color: #ff0000;"> *width</span>:<span style="color: #0000ff;"> 40px</span>; <span style="color: #008080;"> 5</span> <span style="color: #ff0000;"> *height</span>:<span style="color: #0000ff;"> 40px</span>; <span style="color: #008080;"> 6</span> <span style="color: #ff0000;"> font-size</span>:<span style="color: #0000ff;"> 0</span>; <span style="color: #008080;"> 7</span> <span style="color: #ff0000;"> line-height</span>:<span style="color: #0000ff;"> 0</span>; <span style="color: #008080;"> 8</span> <span style="color: #ff0000;"> overflow</span>:<span style="color: #0000ff;"> hidden</span>;</strong> <span style="color: #008080;"> 9</span> <span style="color: #ff0000;"> border-width</span>:<span style="color: #0000ff;"> 20px</span>; <strong><span style="color: #008080;">10</span> <span style="color: #ff0000;"> border-style</span>:<span style="color: #0000ff;"> dashed dashed solid dashed</span>; <span style="color: #008080;">11</span> <span style="color: #ff0000;"> border-color</span>:<span style="color: #0000ff;"> transparent transparent yellow transparent</span>;</strong> <span style="color: #008080;">12</span> }</span>

t.png)


<span style="color: #800000; font-size: 15px;">border-style: solid dashed dashed dashed; border-color: lightgreen transparent transparent transparent;</span>


<span style="color: #800000; font-size: 15px;">border-style: dashed solid dashed dashed; border-color: transparent pink transparent transparent;</span>

q.png)
<span style="color: #800000; font-size: 15px;">border-style: dashed dashed dashed solid; border-color: transparent transparent transparent lightblue;</span>
<span style="font-size: 15px;"><span style="color: #008080;"> 1</span> <span style="color: #008000;">/*</span><span style="color: #008000;"> css </span><span style="color: #008000;">*/</span> <span style="color: #008080;"> 2</span> <span style="color: #800000;">*</span>{ <span style="color: #008080;"> 3</span> <span style="color: #ff0000;"> margin</span>:<span style="color: #0000ff;"> 0px</span>; <span style="color: #008080;"> 4</span> <span style="color: #ff0000;"> padding</span>:<span style="color: #0000ff;"> 0px</span>; <span style="color: #008080;"> 5</span> <span style="color: #ff0000;"> text-align</span>:<span style="color: #0000ff;"> center</span>; <span style="color: #008080;"> 6</span> } <span style="color: #008080;"> 7</span> <span style="color: #800000;">#container</span>{ <span style="color: #008080;"> 8</span> <span style="color: #ff0000;"> position</span>:<span style="color: #0000ff;"> relative</span>;<span style="color: #ff0000;"> //这句很重要,因为小三角是相对父元素#container来绝对定位的 </span><span style="color: #008080;"> 9</span> <span style="color: #ff0000;"> width</span>:<span style="color: #0000ff;"> 50px</span>; <span style="color: #008080;">10</span> <span style="color: #ff0000;"> height</span>:<span style="color: #0000ff;"> 40px</span>; <span style="color: #008080;">11</span> <span style="color: #ff0000;"> border</span>:<span style="color: #0000ff;">1px solid lightblue</span>; <span style="color: #008080;">12</span> <span style="color: #ff0000;"> margin</span>:<span style="color: #0000ff;"> 200px auto</span>; <span style="color: #008080;">13</span> <span style="color: #ff0000;"> padding</span>:<span style="color: #0000ff;"> 20px</span>; <span style="color: #008080;">14</span> <span style="color: #008080;">15</span> } <span style="color: #008080;">16</span> <span style="color: #800000;">#chat</span>{ <span style="color: #008080;">17</span> <span style="color: #ff0000;"> width</span>:<span style="color: #0000ff;"> 50px</span>; <span style="color: #008080;">18</span> <span style="color: #ff0000;"> height</span>:<span style="color: #0000ff;"> 40px</span>; <span style="color: #008080;">19</span> <span style="color: #ff0000;"> background-color</span>:<span style="color: #0000ff;"> lightblue</span>; <span style="color: #008080;">20</span> } <span style="color: #008080;">21</span> <span style="color: #800000;">#triangle</span>{ <span style="color: #008080;">22</span> <span style="color: #ff0000;"> position</span>:<span style="color: #0000ff;"> absolute</span>;<span style="color: #ff0000;"> //设置小三角绝对定位 </span><span style="color: #008080;">23</span> <span style="color: #ff0000;"> width</span>:<span style="color: #0000ff;"> 0px</span>; <span style="color: #008080;">24</span> <span style="color: #ff0000;"> height</span>:<span style="color: #0000ff;"> 0px</span>; <span style="color: #008080;">25</span> <span style="color: #ff0000;"> *width</span>:<span style="color: #0000ff;"> 14px</span>; <span style="color: #008080;">26</span> <span style="color: #ff0000;"> *height</span>:<span style="color: #0000ff;"> 14px</span>; <span style="color: #008080;">27</span> <span style="color: #ff0000;"> font-size</span>:<span style="color: #0000ff;"> 0</span>; <span style="color: #008080;">28</span> <span style="color: #ff0000;"> line-height</span>:<span style="color: #0000ff;"> 0</span>; <span style="color: #008080;">29</span> <span style="color: #ff0000;"> overflow</span>:<span style="color: #0000ff;"> hidden</span>; <span style="color: #008080;">30</span> <span style="color: #ff0000;"> border-width</span>:<span style="color: #0000ff;"> 7px</span>; <span style="color: #008080;">31</span> <span style="color: #ff0000;"> border-style</span>:<span style="color: #0000ff;"> dashed dashed dashed solid</span>; <span style="color: #008080;">32</span> <span style="color: #ff0000;"> border-color</span>:<span style="color: #0000ff;"> transparent transparent transparent lightblue</span>; <span style="color: #008080;">33</span> <span style="color: #ff0000;"> top</span>:<span style="color: #0000ff;"> 33px</span>;<span style="color: #ff0000;"> //33px:父元素#container的内边距20px + #chat宽度的一半20px - 自身元素#triangle的边宽7px =33px </span><span style="color: #008080;">34</span> <span style="color: #ff0000;"> left</span>:<span style="color: #0000ff;"> 70px</span>;<span style="color: #ff0000;"> //70px</span>:<span style="color: #0000ff;"> #chat的宽度50px + 父元素#container的内边距20px =70px </span><span style="color: #008080;">35</span> }</span>
<span style="font-size: 15px;"><span style="color: #008000;">/*</span><span style="color: #008000;"> html代码 </span><span style="color: #008000;">*/</span><span style="color: #800000;"> <div id="container"> <div id="chat"></div> <div id="triangle"></div> </div></span></span>

핫 AI 도구

Undresser.AI Undress
사실적인 누드 사진을 만들기 위한 AI 기반 앱

AI Clothes Remover
사진에서 옷을 제거하는 온라인 AI 도구입니다.

Undress AI Tool
무료로 이미지를 벗다

Clothoff.io
AI 옷 제거제

Video Face Swap
완전히 무료인 AI 얼굴 교환 도구를 사용하여 모든 비디오의 얼굴을 쉽게 바꾸세요!

인기 기사

뜨거운 도구

메모장++7.3.1
사용하기 쉬운 무료 코드 편집기

SublimeText3 중국어 버전
중국어 버전, 사용하기 매우 쉽습니다.

스튜디오 13.0.1 보내기
강력한 PHP 통합 개발 환경

드림위버 CS6
시각적 웹 개발 도구

SublimeText3 Mac 버전
신 수준의 코드 편집 소프트웨어(SublimeText3)

뜨거운 주제











HTML은 간단하고 배우기 쉽고 결과를 빠르게 볼 수 있기 때문에 초보자에게 적합합니다. 1) HTML의 학습 곡선은 매끄럽고 시작하기 쉽습니다. 2) 기본 태그를 마스터하여 웹 페이지를 만들기 시작하십시오. 3) 유연성이 높고 CSS 및 JavaScript와 함께 사용할 수 있습니다. 4) 풍부한 학습 리소스와 현대 도구는 학습 과정을 지원합니다.

HTML은 웹 구조를 정의하고 CSS는 스타일과 레이아웃을 담당하며 JavaScript는 동적 상호 작용을 제공합니다. 세 사람은 웹 개발에서 의무를 수행하고 화려한 웹 사이트를 공동으로 구축합니다.

anexampleStartingtaginhtmlis, whithbeginsaparagraph.startingtagsareessentialinhtmlastheyinitiate rements, definetheirtypes, andarecrucialforstructurituringwebpages 및 smanstlingthedom.

WebDevelopmentReliesonHtml, CSS 및 JavaScript : 1) HtmlStructuresContent, 2) CSSSTYLESIT, 및 3) JAVASCRIPTADDSINGINTERACTIVITY, BASISOFMODERNWEBEXPERIENCES를 형성합니다.

GiteEpages 정적 웹 사이트 배포 실패 : 404 오류 문제 해결 및 해결시 Gitee ...

웹 주석 기능에 대한 Y 축 위치 적응 알고리즘이 기사는 Word 문서와 유사한 주석 기능을 구현하는 방법, 특히 주석 간격을 다루는 방법을 모색합니다 ...

이미지를 클릭 한 후 주변 이미지를 산란 및 확대하는 효과를 얻으려면 많은 웹 디자인이 대화식 효과를 달성해야합니다. 특정 이미지를 클릭하여 주변을 만들 수 있습니다 ...

vue 응용 프로그램을 개발할 때 라우터 폴더 아래에 index.js 파일에 vuerouter를 등록해야 할 필요성이 있으면 종종 라우팅 구성에 문제가 발생합니다. 특별한...
