button  꾸미기! (hover효과 주기)

 

예시

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<style type="text/css">
.submit{ 
border-top-left-radius: 5px; 
border-top-right-radius: 5px; 
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px; 
background: white;}
.submit:hover {
border-top-left-radius: 5px; 
border-top-right-radius: 5px; 
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px; 
background: black;
color: white;
}
</style>
</head>
<body>
<input type="submit" class="submit" value="글쓰기">
</body>
</html>

 

설명 

border-위치-radius

위치에 둥그런 효과

background

배경색 지정

color

글자색 지정

접근객체: hover

tag명, id명, class명 다 가능하다!

button모양의 input type이면 다 사용할 수 있다.

hover란 해당 블럭에 마우스를 올려놨을 때이다.

 

실행화면

 

 

+ Recent posts