我想只使用 css 创建这个形状。我很确定这是可以做到的。但是我在涉及渐变时遇到了麻烦。
这个形状里面会包含一些文字。建议的 html 标记是:
<div class="container">
... more html contents...
</div>
一个jsFiddle将不胜感激。
提前致谢。
我想只使用 css 创建这个形状。我很确定这是可以做到的。但是我在涉及渐变时遇到了麻烦。
这个形状里面会包含一些文字。建议的 html 标记是:
<div class="container">
... more html contents...
</div>
一个jsFiddle将不胜感激。
提前致谢。
试试这个,http://jsfiddle.net/HshfF/1/
CSS:(来自此评论中的小提琴)
.main {
background: -moz-linear-gradient(top, #ffffff 0%, #e8e8e8 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#e8e8e8)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #ffffff 0%,#e8e8e8 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #ffffff 0%,#e8e8e8 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #ffffff 0%,#e8e8e8 100%); /* IE10+ */
background: linear-gradient(to bottom, #ffffff 0%,#e8e8e8 100%); /* W3C */
position: relative;
width: 150px;
height: 100px;
margin: 10px;
border: 1px solid #d0d0d0;
border-radius: 10px;
padding: 20px;
}
.main:before {
content: '';
display: block;
top: -1px;
right: -1px;
width: 20px;
height: 20px;
background: -moz-linear-gradient(top, #ffffff 0%, #e8e8e8 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#e8e8e8)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #ffffff 0%,#e8e8e8 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #ffffff 0%,#e8e8e8 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #ffffff 0%,#e8e8e8 100%); /* IE10+ */
background: linear-gradient(to bottom, #ffffff 0%,#e8e8e8 100%); /* W3C */
position: absolute;
border-radius: 0 0 0 5px;
border-left: 1px solid #d0d0d0;
border-bottom: 1px solid #d0d0d0;
}
.main:after {
content: '';
display: block;
position: absolute;
top: -1px;
right: -1px;
border-top: 20px solid #fff;
border-left: 20px solid transparent;
}
请学习 CSS3,试试 Nicholas Gallagher 教程,他有一些最好的 css3 教程:你正在寻找的一个http://nicolasgallagher.com/pure-css-folded-corner-effect/demo/
你寻找的阴影和颜色我认为你需要自己做。
几乎有这个:http: //jsfiddle.net/Grezzo/52zG7/
你只需要一个 div (感谢伪元素),但我还没有“切入”角落。