css写一个好看的提示框
时间: 2023-05-26 20:01:22 浏览: 187
可以尝试以下代码:
```
<div class="tip-box">
<p class="tip-message">这是一个提示框</p>
</div>
<style>
.tip-box {
background-color: #fff;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
padding: 20px;
width: 300px;
text-align: center;
}
.tip-message {
font-size: 20px;
font-weight: bold;
color: #333;
}
</style>
```
你可以根据需求调整提示框的宽度、背景色、阴影等效果,同时调整提示信息的字体大小、颜色等样式。
阅读全文