CSS出错了!
我编写了一段HTML代码和CSS代码,但是出来的效果与我想要编写的效果完全相反:
demo.html
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>Hello World! </title>
<link rel="stylesheet" href="demo.css" type="text/css" />
</head>
<body>
<div id="father">
<div id="son">
</div>
</div>
</body>
</html>
demo.css
div#father
{
width:10px;height:10px;background:red;
}
div#son
{
padding-top:3px;padding-bottom:3px;padding-left:5px;padding-right:0px;background:green;
}
我想让它显示一个方块,其中,有一个红色块在左边,半包围右边的绿色块,构成整个方块,就像竖起来的“凹”字。
而事实却是,一个方块,上半部分显示绿色,下半部分显示红色。
这是为什么?怎么样才能实现呢?
拜托各位,帮帮忙!
CSS code:
div#father
{
width:10px;height:10px;background:red; overflow:hidden; position:relative;
}
div#son
{
top:3px;bottom:3px;left:5px;right:0px;background:green; overflow:hidden; width:5px; height:4px; position:absolute;
相关问答:
不懂他网格如何原理
\Using Nesting Grids
YUI Grids CSS provides a system for subdividing sections of your page with nestable grids. Use this technique to easily create complex layouts that go ......
对CSS能看懂,但一些属性还是不能够完全理解。
自己只会写些常用的CSS。还没达到创造和创新的地步。
所以想问下各位前辈,应该看那本书较好呢?
建议不买书网上找教程自学,这个东西不是很难,多练习就会了
......
我现在在学习网站开发,学习的过程中发现CSS是用来设置样式的,而DOM也可以用来设置样式,js库也可以。
这些究竟在什么时候用什么?
请指点!谢谢!
不用js+dom操作css,LZ写个用dom操作css的来看看
DOM只是一 ......
CSS code:
body {
}
#x
{
width:1024px;
height:768%;
background-color:Red;
position:relative;
}
#x.top
{ position:absolute;
width:800px;
height:100px;
top:0px ......