Table of Contents
Text
Font
Background
Lists
box-model
position and :after / :before
CSS3
Home Web Front-end HTML Tutorial css中应该滚瓜烂熟的属性_html/css_WEB-ITnose

css中应该滚瓜烂熟的属性_html/css_WEB-ITnose

Jun 21, 2016 am 09:14 AM

Text

  • color 设置text的颜色
  • text-align 设置text的对齐
  • text-decoration 设置text的下划线
  • text-transformation 设置字母的大小写和单词的首字母大写
  • line-height 设置行高
  • letter-spacing 设置字符间的距离
  • Font

  • font-family 设置字体
  • font-size 设置字体的大小
  • font-style 设置字体为斜体还是正常显示
  • font-weight 加粗字体
  • Background

  • background-color 设置背景的颜色
  • background-image 设置背景图片
  • background-repeat 设置背景图片的重复方式
  • background-position 设置背景图片的位置 默认为top left
  • Lists

  • list-style-type 设置list的类型,有circle等值
  • box-model

  • margin 设置盒子的外边距 外边距是透明的。
  • padding 设置盒子的内边距 内边距也是透明的。
  • border 设置盒子的边框,边框为不透明的。note:边框必须要设置类型,否则将无效。
  • float 设置盒子的浮动,浮动是绝对定位的一种,其占位空间将消失。
  • clear 清除盒子的浮动,清除封装的那个盒子的浮动。
  • position and :after / :before

  • :after 和 :before 通常都是和position一起使用的。position分为绝对定位和相对定位,相对定位的空间还在,绝对定位的空间就不在了。那两个伪类+ position的绝对定位,由非常强大的威力,很多地方都可以用。比如微信的小红点消息通知。
  • CSS3

  • border-radius css3支持设置圆角
    -webkit-border-radius 支持webkit的浏览器
    -moz-border-radius: 支持moz的浏览器
    Syntax:提供一个半径即可。
  • box-shadow css3支持设置阴影
    -webkit-box-shadow
    -moz-box-shadow
    Syntax-shadow: none|h-shadow v-shadow blur spread color |inset|initial|inherit;

  • text-shadow css3 支持设置text阴影
    Syntax-shadow: h-shadow v-shadow blur-radius color|none|initial|inherit;

  • Multiple Backgrounds css3的背景图支持多张背景图

  • ** background-size** css3支持背景的尺寸
  • text-overflow css3 支持对超出边界的文字的处理
    Syntax:
    text-overflow: clip|ellipsis|string|initial|inherit;

  • Flexible Box Model

  • transform 分为2d和3d 主要包括缩放、平移和旋转。
  • 未完待续......

    Statement of this Website
    The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

    Hot AI Tools

    Undresser.AI Undress

    Undresser.AI Undress

    AI-powered app for creating realistic nude photos

    AI Clothes Remover

    AI Clothes Remover

    Online AI tool for removing clothes from photos.

    Undress AI Tool

    Undress AI Tool

    Undress images for free

    Clothoff.io

    Clothoff.io

    AI clothes remover

    Video Face Swap

    Video Face Swap

    Swap faces in any video effortlessly with our completely free AI face swap tool!

    Hot Tools

    Notepad++7.3.1

    Notepad++7.3.1

    Easy-to-use and free code editor

    SublimeText3 Chinese version

    SublimeText3 Chinese version

    Chinese version, very easy to use

    Zend Studio 13.0.1

    Zend Studio 13.0.1

    Powerful PHP integrated development environment

    Dreamweaver CS6

    Dreamweaver CS6

    Visual web development tools

    SublimeText3 Mac version

    SublimeText3 Mac version

    God-level code editing software (SublimeText3)

    Is HTML easy to learn for beginners? Is HTML easy to learn for beginners? Apr 07, 2025 am 12:11 AM

    HTML is suitable for beginners because it is simple and easy to learn and can quickly see results. 1) The learning curve of HTML is smooth and easy to get started. 2) Just master the basic tags to start creating web pages. 3) High flexibility and can be used in combination with CSS and JavaScript. 4) Rich learning resources and modern tools support the learning process.

    What is the purpose of the <progress> element? What is the purpose of the <progress> element? Mar 21, 2025 pm 12:34 PM

    The article discusses the HTML &lt;progress&gt; element, its purpose, styling, and differences from the &lt;meter&gt; element. The main focus is on using &lt;progress&gt; for task completion and &lt;meter&gt; for stati

    The Roles of HTML, CSS, and JavaScript: Core Responsibilities The Roles of HTML, CSS, and JavaScript: Core Responsibilities Apr 08, 2025 pm 07:05 PM

    HTML defines the web structure, CSS is responsible for style and layout, and JavaScript gives dynamic interaction. The three perform their duties in web development and jointly build a colorful website.

    What is the purpose of the <datalist> element? What is the purpose of the <datalist> element? Mar 21, 2025 pm 12:33 PM

    The article discusses the HTML &lt;datalist&gt; element, which enhances forms by providing autocomplete suggestions, improving user experience and reducing errors.Character count: 159

    What is the purpose of the <meter> element? What is the purpose of the <meter> element? Mar 21, 2025 pm 12:35 PM

    The article discusses the HTML &lt;meter&gt; element, used for displaying scalar or fractional values within a range, and its common applications in web development. It differentiates &lt;meter&gt; from &lt;progress&gt; and ex

    What is an example of a starting tag in HTML? What is an example of a starting tag in HTML? Apr 06, 2025 am 12:04 AM

    AnexampleofastartingtaginHTMLis,whichbeginsaparagraph.StartingtagsareessentialinHTMLastheyinitiateelements,definetheirtypes,andarecrucialforstructuringwebpagesandconstructingtheDOM.

    Understanding HTML, CSS, and JavaScript: A Beginner's Guide Understanding HTML, CSS, and JavaScript: A Beginner's Guide Apr 12, 2025 am 12:02 AM

    WebdevelopmentreliesonHTML,CSS,andJavaScript:1)HTMLstructurescontent,2)CSSstylesit,and3)JavaScriptaddsinteractivity,formingthebasisofmodernwebexperiences.

    Gitee Pages static website deployment failed: How to troubleshoot and resolve single file 404 errors? Gitee Pages static website deployment failed: How to troubleshoot and resolve single file 404 errors? Apr 04, 2025 pm 11:54 PM

    GiteePages static website deployment failed: 404 error troubleshooting and resolution when using Gitee...

    See all articles