# 오늘 한 일
1) 이미지에 마우스 오버 효과 주기 (hover연결하기)
<style> .coffee:hover img { opacity: 0.4; } </style> <html> <body> <img src="./img/coffee.jpeg class="coffee"></img> </body> </html>
2) 단어를 기준으로 줄바꿈하고 싶을 때
<style> p { word-break: keep-all; } </style>