在學習css的時候,寫出來一個CSS緞帶效果,感覺還不錯,下面小編就來帶你們了解一下
<!DOCTYPE HTML> <html> <head> <style type="text/css"> .ribbon-content { border: 1px solid #DDD; font-weight: bold; margin: 0 -10px; min-height: 30px; padding: 7px 31px; text-align: center; line-height: 30px; } .ribbon-left { display: block; border-left: 10px solid white; border-top: 8px solid #EEE; float: left; height: 0; margin-left: -10px; width: 0; } .ribbon-right { display: block; border-right: 10px solid white; border-top: 8px solid #EEE; float: right; height: 0; margin-right: -10px; width: 0; } </style> </head> <body> <p style="margin: 0 auto; width: 200px;"> <p class="ribbon" style="background: whiteSmoke;"> <p class="ribbon-content" style="background: whiteSmoke;">标题</p> <p class="ribbon-left"></p> <p class="ribbon-right"></p> </p> <p style="background: whiteSmoke;">内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容</p> </p> </body> </html>
以上是一個用CSS實現的緞帶效果代碼的詳細內容。更多資訊請關注PHP中文網其他相關文章!