我有这个 div:
#edj{
width:50%;
border-style: solid;
border-width: 5px;
}
</style>
</head>
<body>
<div id = "edj">
<p><label>Faculty <input type="text" class = "k"> </label></p>
<p><label >Departmet <input type="text" class = "k"> </label>
</div>
我想让文本框宽度为 div 宽度的 30%。
如何使用 css 代码来实现?
最佳答案
这是最简单形式的答案,这将使 30% 的 parent 使用输入字段。
input {
width: 30%;
}
关于html - 如何使用 css 使子元素宽度为父元素宽度的 30%?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/30152588/