我想把字段集上中心。如何定位<fieldset>標記?
HTML代碼:
<html>
<head>
<style>
body {
background-color: #f42b68;
width: 100%;
}
fieldset {
height: 50%;
width: 80%;
background: #ffffff;
}
</style>
</head>
<body>
<center>
<fieldset>
<form>
<input type="text" placeholder="txt">
</form>
</fieldset>
</center>
</body>
</html>
是否有任何可能的方式來做到這一點以外使用center
標籤?
字段集被假設是形式的孩子,而不是相反:) –