如何让 ChatGPT 响应框居中显示并调整大小
可以通过添加以下 CSS 来实现让输入框居中显示,大小适中:
#chatgpt-response {
margin: 0 auto;
width: 80%;
height: 500px;
font-size: 16px;
line-height: 1.5;
border-radius: 10px;
border: 1px solid #ccc;
background-color: #f4f4f4;
color: #333;
overflow: scroll;
}
可以根据需要调整宽度、高度、字体大小等属性。
原文地址: https://www.cveoy.top/t/topic/lIbh 著作权归作者所有。请勿转载和采集!