CSS在網頁設計中起著至關重要的作用,通過巧妙的樣式設計,可以展現出非常美觀的效果。其中,最為常見的就是消息提示框,如何通過CSS讓整個提示框更加漂亮呢?下面是一些CSS好看的消息提示的實現方式。
/*1.純CSS實現消息提示框*/ .message{ background-color:#FFF9D0; border:1px solid #E8C100; border-radius:3px; color:#666; font-size:12px; line-height:20px; padding:4px 10px; position:relative; } .message:before{ border-bottom:10px solid #FFF9D0; border-left:10px solid transparent; border-right:10px solid transparent; content:""; height:0; left:0; position:absolute; top:-10px; width:0; } .message:after{ border-bottom:10px solid #E8C100; border-left:10px solid transparent; border-right:10px solid transparent; content:""; height:0; left:0; position:absolute; top:-9px; width:0; } /*2.自定義圖片的消息提示框*/ .message{ background-color:#F3F3F3; border:1px solid #DDD; border-radius:5px; color:#333; font-size:14px; line-height:24px; padding:10px 20px 10px 60px; position:relative; } .message:before{ background-image:url('message.png'); background-position:10px 8px; background-repeat:no-repeat; content:""; height:30px; left:15px; position:absolute; top:8px; width:30px; } /*3.動效的消息提示框*/ .message{ background-color:#FFE2E2; border:1px solid #FFB6B6; border-radius:3px; color:#B40404; font-size:12px; line-height:20px; padding:4px 10px; position:relative; transition:all 0.5s ease; } .message:hover{ background-color:#FFB6B6; border:1px solid #E81B1B; color:#FFF; }
以上三種消息提示框的實現方式,均經過過多次調試,最終呈現出美觀大方的效果。在頁面安排中定位好每個提示框的位置后,通過CSS樣式的調整,可以讓整個頁面更有層次性和美感。同時,也需要注意到不同的定制消息框要與整個頁面的風格相協調,達到更好的用戶體驗。
上一篇css如何使div陰影
下一篇php ocr類