php中,写了个box的css,然后做出来直接定到top上了

html-css07

php中,写了个box的css,然后做出来直接定到top上了,第1张

.box {

width: 758px

height: 758px

left: 50%

top: 50%

margin-left: -379px

margin-top: -379px

border: solid 1px #fff

position: relative

background: url(screen_red.png)

}

文艺点说法就是,楼上所讲的。

深入理解,请参照以下

1、html就是你随便在某个页面中右键查看源代码,查看到的就是html具体的标签(其中可能还有css跟javascript)

2、css是这样引入 html中

<link rel="canonical" href="http://zhidao.baidu.com/question/424509021144112732.html"/>

其中:css有四种引入方式,百度下就知道了。

3、css具体的写法是这样的:

.daily-title-box{

overflow: hidden

width: 980px

line-height: 30px

height: 30px

position: relative

z-index: 0

padding-top: 15px

padding-bottom: 14px

border-bottom: 1px solid #e1e1e1

}

其中还有很多其它形式的写法,百度下

w3school 在线教程,就可以看到具体的用法了

希望对你有帮助。