gpt4 book ai didi

html - 如何使用 CSS 创建圆 Angular 文本框?

转载 作者:行者123 更新时间:2023-11-28 15:20:59 24 4
gpt4 key购买 nike

如何创建相对于文本位置的圆 Angular 文本框?截至目前,我创建的框位于页面的左上角,而文本具有特定设置,左右填充 300 像素。我希望该框包含文本并位于文本的相同位置。

目前正在学习网络开发。

<p id="rcorners">
<h2>Education</h2>
<ul>
<li><b>New York University</b></li>
<li> Bachelor of Science in Journalism, Minor in English, expected graduation 2018</li>
<li>GPA: 3.76</li>
</ul>
</p>

#rcorners {
border-radius: 25px;
border: 2px solid #000;
padding-left: 300px;
padding-right: 300px;
width: 200px;
height: 150px;
}

最佳答案

我想这对你有帮助。把你的全部放入 div

<html>
<head>
<title>Welcome !</title>

<style type="text/css">
#txbox{
border: 1px solid black;
box-shadow: 1px 2px 2px black;
width: 50%;
height: auto;
padding-left: 5%;
position: absolute;
border-radius: 25px;
}

</style>
<body>

<div id="txbox">

<h2>Education</h2>
<ul>
<li><b>New York University</b></li>
<li> Bachelor of Science in Journalism, Minor in English, expected graduation 2018</li>
<li>GPA: 3.76</li>
</ul>

</div>

</body>
</html>

关于html - 如何使用 CSS 创建圆 Angular 文本框?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34999057/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com