CSS 디자인

hover시 보이는 title의 css 바꾸기

박금향 2023. 8. 28. 15:25

태그에 마우스 호버했을 때 보이는 title 속성의 css 바꾸는 방법

 

div {
	position: relative;
	뭐 알아서 css 채워넣기
}

div[name]:hover::after{
	content:attr(name); 
	position: absolute; 
	top: 0;  
	right: 20px; 
	width:120px;
	height:80px; 
	line-height:80px;  
	padding: 5px; 
	background:#000; 
	font-size:14px; 
	border:1px solid blue; 
	color:#fff; 
	text-align:center; 
	z-index:100;
}