你好,我試圖用css Image Link來做這樣的事情。 我試過transform: skew(0deg, -35deg);
和transform: rotate(-45deg);
,但背景顏色不是圖像。Sideway將背景文字旋轉
-1
A
回答
0
你可以試試這個
.container{
border: 1px solid black;
margin: 40px;
height: 400px;
position: relative;
overflow: hidden;
}
.rotated{
background: maroon;
color: white;
transform: rotate(45deg);
text-align: center;
width: 100px;
position: absolute;
right: -25px;
top: 15px;
}
<div class="container">
<div class="rotated">TEXT</div>
</div>
0
你可以使用這個CSS方法本
.card {
width:300px;
height: 300px;
position: relative;
background: #ddd;
overflow: hidden;
}
.tag {
position: absolute;
top:5px;
right:-24px;
background: #990000;
padding: 5px 30px;
text-align: center;
transform: rotate(45deg);
-webkit-transform: rotate(45deg);
color: #fff;
font-size: 14px;
}
<div class="card">
<div class="tag">New</div>
</div>
0
好吧,我只在Chrome中測試了這個。我希望這可以作爲你的起點。
https://jsfiddle.net/pablodarde/af5c9x78/
.container {
display: flex;
justify-content: center;
align-items: center;
width: 380px;
height: 380px;
background: linear-gradient(#D4EDFF, #fff);
}
.inner {
width: 300px;
height: 300px;
background: #fff;
box-shadow: 0 0 2px rgba(0,0,0,.1);
}
.holder-tag {
position: relative;
width: 0;
height: 0;
left: 300px;
}
.holder-tag .tag {
position: absolute;
right: -30px;
top: 20px;
border-bottom: 20px solid #900;
\t border-left: 20px solid transparent;
\t border-right: 20px solid transparent;
\t height: 10px;
\t width: 90px;
transform: rotate(45deg);
}
.holder-tag span {
position: absolute;
right: -18px;
top: 25px;
width: 110px;
line-height: 1px;
color: #fff;
font: normal 14px Arial, Verdana;
text-align: center;
padding: 5px 0 0 0;
box-sizing: border-box;
transform: rotate(45deg);
}
.content {
width: 80%;
padding: 10px;
}
<div class="container">
<div class="inner">
<div class="holder-tag">
<div class="tag"></div>
<span>new</span>
</div>
<div class="content">
<p>
You can write text here without worrying about space.
</p>
</div>
</div>
</div>
相關問題
- 1. 旋轉HTML正文背景
- 2. CSS - 旋轉背景圖片
- 3. 背景UIImageView不旋轉
- 4. 背景圖像旋轉
- 5. MonoTouch。旋轉背景圖片
- 6. 背景圖像旋轉器
- 7. HTML5旋轉/動畫背景
- 8. 旋轉背景漸變xcode
- 9. 旋轉背景圖像
- 10. CSS背景圖像旋轉
- 11. 旋轉背景資源Imageview
- 12. Android相機背景旋轉
- 13. 旋轉用帆布背景
- 14. 如何只旋轉背景180度,(不旋轉字體)
- 15. 用表格中的背景顏色旋轉文字
- 16. 在y軸上旋轉元素以查看背後的背景和文字
- 17. 旋轉圖像背面的文字
- 18. 安卓:背景繪製不旋轉旋轉切換按鈕
- 19. 在旋轉的div中旋轉背景圖像?
- 20. CSS3旋轉div,但保持背景不旋轉
- 21. 旋轉對背景圖像的影響
- 22. SVG背景在IE不同的旋轉
- 23. iOS - 旋轉視圖顯示背景
- 24. Android android:背景自動旋轉選項
- 25. 無限旋轉圖像背景UIImageView
- 26. 如何在CSS中旋轉背景?
- 27. 圖像旋轉與白色背景
- 28. 旋轉Android ImageView及其背景
- 29. 旋轉按鈕的背景圖像
- 30. jQuery body背景圖像旋轉器
可以爲您精心夜質疑多一點?我無法理解你的要求是什麼? –