본문 바로가기
웹 프로그래밍

[CSS] Arrowbox

by Minius 2020. 6. 6.
반응형

http://www.cssarrowplease.com/

 

cssarrowplease

Create and export CSS code for a custom box with an arrow extending out from the side. Great for tooltips, flyouts and the like. Fork me on Github

www.cssarrowplease.com

위의 사진처럼 화살표가 붙은 박스를 만드려면 위 사이트를 참고하면 된다.

 

들어가기 귀찮다면 아래의 소스를,

수정을 원한다면 적절히 수정해서 사용하면 된다.

 

 

.arrow_box {
	position: relative;
	background: #88b7d5;
	border: 4px solid #c2e1f5;
}
.arrow_box:after, .arrow_box:before {
	bottom: 100%;
	left: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}

.arrow_box:after {
	border-color: rgba(136, 183, 213, 0);
	border-bottom-color: #88b7d5;
	border-width: 30px;
	margin-left: -30px;
}
.arrow_box:before {
	border-color: rgba(194, 225, 245, 0);
	border-bottom-color: #c2e1f5;
	border-width: 36px;
	margin-left: -36px;
}

댓글