1.padding和margin,几种参数_html/css_WEB-ITnose

WBOY
Release: 2016-06-24 11:53:29
Original
1263 people have browsed it

  这篇会很短。

  

 

  那么如上图所示,margin指的是外边距,padding指的是内边距,border自有其像素宽度,element在1335乘以392的地方。

  margin和padding一样总共有四个,上右下左??top right bottom left。你可以选择margin-top这样一个个的去设置,也可以margin:10px 0 0 0;这样。

  那么以margin为例,padding类似,后面可以跟的参数有三种形式。

  1.margin: 3px 5px;??两个参,分别表示上下和左右,即上下外边距均为3px,左右外边距均为5px。

  2.margin: 10px 15px 5px;??三个参,分别表示上、左右和下,即上外边距10px,左右外边距均为15px,下外边距为5px。

  3.margin: 10px 7px 5px 8px;??四个参,分别表示上、右、下、左,即上外边距10px,右外边距7px,下外边距5px,左外边距8px。

  padding是一样的写法和含义。

  以上。

source:php.cn
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!