我想在HTML創建此背景& CSS - 注:我不是要包含文本/標誌「Joinnow」:在創建CSS和HTML背景只有
我已經在JSFiddle上得到了如此遠的展示:http://jsfiddle.net/9uppsLqa/26/
底部部分很好,但我正在努力的頂部。出於某種原因,我得到:
- 角度的邊界,我需要直
- 我不能增加頂部的高度。
- 我不能用border-radis曲線頂部的角落
- 顏色與主體頂部不匹配。
當前下面的代碼:
<div class="object"></div>
.object {
border-bottom-right-radius: .1875em;
border-bottom-left-radius: .1875em;
z-index: 99;
position: relative;
box-shadow: 0 0 0 1px rgba(0,0,0,0.15),inset 0 0 0 1px rgba(255,255,255,0.6), 0 4px 2px -2px rgba(0,0,0,0.2),0 0 1px 1px rgba(0,0,0,0.15);
background-repeat: repeat-x;
background-position: 0 0;
background-image: linear-gradient(to bottom,rgba(255,255,255,0.7) 0,rgba(255,255,255,0) 100%);
background-color: #e1e1e1;
margin-top: 3em;
margin-left: .75em;
margin-right: .75em;
padding-left: 0;
padding-bottom: 0;
padding-right: 0;
padding-top: 0;
width: 340px;
height: 160px;
}
.object:after, .object:before {
border: 13px solid transparent;
position: absolute;
content: '';
left: 58%;
bottom:100%;
width: 140px;
height: 800px;
border-top-left-radius: .1875em;
border-top-right-radius: .1875em;
}
.object:after {
border-bottom-color: #fafafa;
border-width: 14px;
margin-left: -24px;
height: 60px;
}
.object:before {
border-bottom-color: #999;
border-width: 15px;
margin-left: -25px;
height: 60px;
}
三江源
我敢肯定,你可以根據自己的需要設置邊框,半徑,高度和寬度,我只是設置正確的定位和去除過多的定義。我還將':after'設置爲從右側開始,而不是從左側開始,因爲更改寬度或其他任何東西都會使其不一致。 – adrenalin 2014-11-05 21:59:42
另請注意,我使用明確的十六進制顏色值爲邊框(和使用邊框,而不是框陰影,因爲它只有1px的寬度)。由於它是嵌入式的,因此無論如何我都沒有真正看到使用盒子陰影的意義,因爲在這裏定義了100%的不透明背景色。考慮到頂部沒有任何漸變。 – adrenalin 2014-11-05 22:09:35
是的,然後你可以設計JoinNow文本的樣式:http://jsfiddle.net/9uppsLqa/29/ – 2014-11-05 22:56:15