色婷婷狠狠18禁久久YY,CHINESE性内射高清国产,国产女人18毛片水真多1,国产AV在线观看

html漂亮的聊天界面代碼

阮建安2年前8瀏覽0評論

HTML漂亮的聊天界面是伴隨著人們在線交流越來越普遍的需求而應運而生的,下面讓我們來看一下如何寫出一個漂亮的聊天界面吧!

<html>
<head>
<title>HTML漂亮的聊天界面</title>
<style type="text/css">
body {
background-color: #f2f2f2;
font-family: Arial, sans-serif;
}
.chat-container {
width: 400px;
margin: 0 auto;
}
.chat-message {
background-color: #fff;
border: 1px solid #ccc;
border-radius: 10px;
padding: 10px;
margin: 10px 0;
}
.chat-message p {
margin: 0;
padding: 0;
}
.user-message {
background-color: #e6eeff;
border-color: #99c2ff;
}
.bot-message {
background-color: #fcf8e3;
border-color: #faebcc;
}
.user-message .avatar {
width: 30px;
height: 30px;
border-radius: 50%;
background-color: #0066cc;
display: inline-block;
margin-right: 10px;
}
.bot-message .avatar {
width: 30px;
height: 30px;
border-radius: 50%;
background-color: #f0ad4e;
display: inline-block;
margin-right: 10px;
}
.form-container {
width: 400px;
margin: 0 auto;
margin-top: 20px;
}
.form-container form {
display: flex;
}
.form-container input {
padding: 10px;
font-size: 14px;
border: 1px solid #ccc;
border-radius: 5px;
flex-grow: 1;
}
.form-container button {
background-color: #0066cc;
color: #fff;
border: none;
border-radius: 5px;
padding: 10px;
margin-left: 10px;
cursor: pointer;
}
.form-container button:hover {
background-color: #0052cc;
}
</style>
</head>
<body>
<div class="chat-container">
<div class="chat-message bot-message">
<div class="avatar"></div>
<p>歡迎來到聊天界面!</p>
</div>
<div class="chat-message user-message">
<div class="avatar"></div>
<p>你好!</p>
</div>
<div class="chat-message bot-message">
<div class="avatar"></div>
<p>有什么可以幫您?</p>
</div>
</div>
<div class="form-container">
<form>
<input type="text" placeholder="輸入聊天內容">
<button>發送</button>
</form>
</div>
</body>
</html>

以上代碼就是一個簡單的HTML漂亮的聊天界面的實現,你可以根據自己的需求進行修改和擴展,讓它更加實用和美觀,希望能對你有所幫助!