Architect's Log

I'm a Cloud Architect. I'm highly motivated to reduce toils with driving DevOps.

2012-09-13から1日間の記事一覧

CSS 疑似クラスセレクタ(:hover)

CSS

現在、マウスオーバーされている要素にスタイルを適用します。 使用例 <html lang="ja"> <head> <title>Hello! CSS</title> <meta charset="UTF-8"> <style> input:hover { background: pink; } </style> </head> <body> <form id="order" action="./order.html" method="post"> <p><label for"sei">姓:</label><input id="sei" type="text">…</p></form></body></html>