html第4天(文字修改,超链接,定位,居中,鼠标变化)

文字修改

  • 修改字号:
    font-family
  • 字体大小:
    font-size
  • 文字颜色:
    color
超链接下划线
  • 取消下划线:
    text-decoration:none;
  • 设置下划线:
    text-decoration: underline;

定位

  • 绝对定位(以浏览器为参照物):
    position: absolute;
  • 相对定位(以标签为参照物)
    position: relative;

居中

  • 水平居中:
    text-align: center;
  • 垂直居中:
    line-height: 高度参数;

鼠标放上去变图标

cursor:pointer;鼠标变手指
cursor:help;鼠标变问号
cursor:wait;鼠标变等待标志

显示和隐藏

display属性
display:none;-->隐藏
display:block;-->显示

posted @ 2022-10-25 23:38  不再犹豫27  阅读(111)  评论(0)    收藏  举报