英文:
How to place the upper rectangular text in the middle of the big rectangular border
问题
我知道存在一个带有写在左上角的表单HTML元素,但是其他的我不清楚。是不是我需要根据父级div在X轴和Y轴上进行翻译?
英文:
I knew of the existence of a form html element with its writing in the upper left corner, but nothing more. Is it that I need to translate on X and Y axis according to the parenting div.
答案1
得分: 1
<fieldset>
元素用于在网页表单中分组内容。
<legend>
元素表示 <fieldset>
的标题。
<!-- begin snippet: js hide: false console: true babel: false -->
<!-- language: lang-css -->
legend {
margin: auto;
padding: .5em;
border: 1px solid grey;
border-radius: 10px;
background-color: lightgrey;
}
<!-- language: lang-html -->
<fieldset>
<legend>绘图中心</legend>
</fieldset>
<!-- end snippet -->
英文:
The <fieldset>
element is used to group content within a web form.
The <legend>
element represents a caption for the <fieldset>
.
<!-- begin snippet: js hide: false console: true babel: false -->
<!-- language: lang-css -->
legend {
margin: auto;
padding: .5em;
border: 1px solid grey;
border-radius: 10px;
background-color: lightgrey;
}
<!-- language: lang-html -->
<fieldset>
<legend>Drawing Centric</legend>
</fieldset>
<!-- end snippet -->
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论