1

昨天我遇到了阴影框的概念,但我的下图不是阴影框,它是 1. 一个简单的 1px 边框的 div。

div{
width: 100px;
height: 100px;
border: 1px solid black;
}

2.盒子的右下边缘有一层额外的厚边框,但不等于各自边框的宽度,因此下面的代码对我不起作用,

div{
width: 100px;
height: 100px;
border: 1px solid black;
border-bottom: 5px solid black;
border-right: 5px solid black;
}

在此处输入图像描述

请为此类框建议一些 CSS。谢谢,

4

2 回答 2

2

这是一个棘手的解决方案(没有 CSS3,所有浏览器都支持):

HTML

<div id="white_box"></div>
<div id="black_box"></div>

CSS

#white_box {
    width: 100px;
    height: 100px;
    border: 1px solid black;
    background-color: #FFF;
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 5;
}
#black_box {
    width: 100px;
    height: 100px;
    background-color: #000;
    position: absolute;
    top: 23px;
    left: 23px;
    z-index: 1;
}

jsFiddle 演示

更新:只有 1 个 DIV:jsFiddle

于 2013-10-31T06:23:45.757 回答
0

你最好复制下面的代码并检查一次,我认为它更好地工作你喜欢你的输出。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>

    <style>
        body {
            text-align:center;
        }
        * {
            margin:0;
            padding:0;
            border:0;
        }
        a {
            text-decoration:none;
            outline:none;
        }
        .container {
            margin:10px auto;
            width:960px;
        }
        .black {
            background:#000;
            width:200px;
            height:100px;
            border-radius: 0 4px 0 4px;
            bottom: -4px;
            height: 98px;
            position: absolute;
            right: -4px;
            width: 200px;
            z-index: -1;
        }
        .white {
            border:1px solid #000;
            background:#fff;
            width:200px;
            height:100px;
            position:relative;
        }
    </style>
</head>


<body>

    <div class="container">
    <div class="white">
        <div class="black">
        </div>
    </div>
    </div>
</body>
</html>
于 2013-10-31T06:41:20.070 回答