gpt4 book ai didi

javascript - 内联显示表单元素

转载 作者:行者123 更新时间:2023-11-28 09:27:49 24 4
gpt4 key购买 nike

我正在学习来自 http://www.sitepoint.com/building-list-jquery-local-storage/ 的教程 构建一个待办事项列表,我想在同一行中显示元素。目前表单元素相互堆叠并垂直显示,但我希望它们垂直显示。我最终想要实现如下所示的结果:

enter image description here

这是 CSS Code

.task-list{
width: 250px;
float: left;
margin: 0 5px;
background-color: #e3e3e3;
min-height: 240px;
border-radius: 10px;
padding-bottom: 15px;

}

.task-list input, .task-list textarea{
width: 240px;
margin: 1px 5px;


}

.task-list input{
height: 30px;

}

.todo-task{
border-radius: 5px;
background-color: #fff;
width: 230px;
margin: 5px;
padding: 5px;
}

.task-list input[type="button"]{
width: 100px;
margin: 5px;

}

.todo-task > .task-header{
font-weight: bold;
}

.todo-task > .task-date{
font-size: small;
font-style: italic;
}

.todo-task > .task-description{
font-size: smaller;
}

这是html代码

<div class="task-list">
<h3>Add a task</h3>
<form id="todo-form">
<input type="text" placeholder="Task Name" />
<textarea placeholder="Description"></textarea>
<input type="text" id="datepicker" placeholder="Due (dd/mm/yyyy)" />
<input type="button" class="btn btn-primary" value="Add Task" onclick="todo.add();" />
</form>

<input type="button" class="btn btn-primary" value="Clear Data" onclick="todo.clear();" />
<div id="delete-div">
Drag Here to Delete
</div>
</div>

<div class="task-list task-container" id="pending">
<h3>Pending</h3>
<!--<div class="todo-task">
<div class="task-header">Sample Header</div>
<div class="task-date">25/06/1992</div>
<div class="task-description">Lorem Ipsum Dolor Sit Amet</div>
</div>-->
</div>

最佳答案

你只需要改变

.任务列表{ 宽度:250px;

(位于您的 css 的最顶部)

类似于

.任务列表{ 宽度:850px;

这将使空间内的所有元素并排站立...

关于javascript - 内联显示表单元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25826768/

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