css-tooltips.htm

来自「The code, images and designs for this bo」· HTM 代码 · 共 52 行

HTM
52
字号
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>CSS Tooltips</title><style type="text/css"><!--/* pretty stuff================================== */body {  font-family: "Myriad Pro", Frutiger, "Lucida Grande", "Lucida Sans", "Lucida Sans Unicode", Verdana, sans-serif;  line-height: 1.2;}/* css tooltip================================== */a.tooltip {  position: relative;}a.tooltip span {  display: none;}a.tooltip:hover {  font-size: 100%; /* Fixes bug in IE5.x/Win */}a.tooltip:hover span {  display:block;  position:absolute;  top:1em;  left:2em;  padding: 0.2em 0.6em;  border:1px solid #996633;  background-color:#FFFF66;  color:#000;}--></style></head><body><p><a href="http://www.andybudd.com/" class="tooltip">Andy Budd<span> (This website rocks) </span></a> is a web developer based in Brighton England.</p></body></html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?