可以随意定义鼠标的样式,这里我们定义鼠标移动样式.
学习
鼠标样式
.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>定于你的鼠标样式</title> <style type="text/css" media="all"> body { cursor: move; } </style> </head> <body> <p>可以随意定义鼠标的样式,这里我们定义鼠标移动样式.</p> <p>学习<a href="http://www.dreamdu.com/css/property_cursor/">鼠标样式</a>.</p> </body> </html>