zoukankan      html  css  js  c++  java
  • 寒假学习笔记(5)

    CSS 背景
    background-color
    p {background-color: gray;}
    设置向外的延伸
    p {background-color: gray; padding: 20px;}
    background-image
    body {background-image: url(/i/eg_bg_04.gif);}(需要设置URL值)

    background-repeat背景重复
    repeat-x 和 repeat-y 分别导致图像只在水平或垂直方向上重复,no-repeat 则不允许图像在任何方向上平铺。

    background-position图像在背景中的位置

    CSS 文本
    首行缩进text-indent
    水平对齐text-align
    字间隔word-spacing
    字母间隔letter-spacing
    文本装饰text-decoration
    元素:underline 会对元素加下划线,overline 会在文本的顶端画一个上划线line-through 在文本中间画一个贯穿线blink 会让文本闪烁

    字体:font-family
    字体风格font-style
    normal - 文本正常显示
    italic - 文本斜体显示
    oblique - 文本倾斜显示
    字体加粗font-weight
    字体大小font-size

    CSS 链接
    a:link {color:#FF0000;} /* 未被访问的链接 */
    a:visited {color:#00FF00;} /* 已被访问的链接 */
    a:hover {color:#FF00FF;} /* 鼠标指针移动到链接上 */
    a:active {color:#0000FF;} /* 正在被点击的链接 */
    影响:
    <a href="/index.html" target="_blank">这是一个链接</a>

    CSS列表
    list-style 简写属性。用于把所有用于列表的属性设置于一个声明中。
    list-style-image 将图象设置为列表项标志。
    list-style-position 设置列表中列表项标志的位置。
    list-style-type 设置列表项标志的类型。

  • 相关阅读:
    全排列问题(递归&非递归&STL函数)
    基于python的机器学习开发环境安装(最简单的初步开发环境)
    X分钟速成Python
    X分钟速成Python3
    Python6
    Python5
    Error[Pe020]: identifier "FILE" is undefined
    串口 ------ 硬件流控
    STM32F103 ------ 时钟配置
    git
  • 原文地址:https://www.cnblogs.com/jmdd/p/12266779.html
Copyright © 2011-2022 走看看