首页 > 代码库 > <a 的CSS惯例

<a 的CSS惯例

aa:link {
  1. cursorpointer;         /*使用箭头  掠过显示小手  ie5只认:  cursor: hand;*/
  2. color#666;
  3. line-height24px;
  4. text-decorationnone;    /*无下划线*/
  5. white-spacenowrap;     /*无空格  不换行*/
  6. text-overflowellipsis;   /*ellipsis: 当对象内文本溢出时显示省略标记(...).*/
  7. -o-text-overflowellipsis;
}
a:hover{ text-decoration:underline; color:#04407D;}/*经过的时候显示红色*/

<a 的CSS惯例