0

我想用 HTML 编写一个框,就像我在图片中添加的那个框一样,右上角的蓝色框被剪掉了。

盒子

我想知道我是否可以这样做,或者是否必须将其作为图像。请让我知道。

4

4 回答 4

2

您可以使用 css 制作:http: //jsfiddle.net/Cqnaa/

<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="utf-8" />
        <title>Hello</title>
        <style>
        body{
                margin: 20px;
        }

        .box:after {
                content: "";
                position: absolute;
                top: 0px;
                right: 0px;
                border-width: 20px 20px 0 0;
                border-style: solid;
                border-color: #fff transparent;
                display: block;
                width: 0;
        }

        .box {
                color: #fff;
                background-color: #bbd0ed;
                position: relative;
                height: 80px;
                width: 150px;
                padding: 10px;
        }
        </style>
    </head>
    <body>
        <p class="box">
                Hello!
        </p>
    </body>
</html>

格力高频

于 2012-09-28T06:43:10.010 回答
0

这可以通过 CSS 完成:

.box-corner {
   /* You would prefer a png for the transparent background where the corner is */
   background-image: url('box-background.jpg');
   padding: 10px 10px 0 0; /* Assuming the corner is 10x10 */
}

然后像这样实例化它:

<div class="box-corner">Content</div>
于 2012-09-28T06:16:16.487 回答
0

取一个带有一些背景颜色的高度和宽度的 DIV。然后添加一个带有背景的子 div,因为作物在图像中。将子 div 的位置设置为相对并将顶部和右侧设置为 0。如下所示

  #childDiv{
       position : relative;
       background-image : url("cropedMark.png)"
       width : "Some width";
       height : "Some height";
       top : 0;
       right : 0
  }

希望这可以帮助。

于 2012-09-28T06:17:16.517 回答
0

这是一个确切的答案。 http://jsfiddle.net/swGvr/

<style>
#target {
border-top: 30px solid transparent;
border-left: 30px solid #4c4c4c; 
border-right: 30px solid #4c4c4c; 
border-bottom: 30px solid #4c4c4c;
width:200px;
height:100px;
}
#target > div {
background-color:#4c4c4c;
width:230px;
height:130px;
margin-top:-30px;
margin-left:-30px;
position:absolute;
}
</style>
<div id="target"><div></div></div>

有两个 CSS 共享宽度和高度。您也可以使用 jQuery 自动生成另一个。

于 2012-09-28T06:32:48.920 回答