- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个复杂的表单部分,它实际上并排包含两个表单。主窗体在右侧,我需要将此窗体的提交按钮置于窗体容器的中央。这是我正在处理的简化版本的 fiddle :
https://jsfiddle.net/as2e4d0d/5/
fiddle 的 html:
<div class="form post-form">
<div class="post-form__left">
<form class="form__form" method="POST" action="#" accept-charset="UTF-8">
<textarea type="text" class="form__input post-form__question-input" autocomplete="off" name="question" placeholder="Ask a new question"></textarea>
<input type="submit" value="Ask" class="button button--green post-form__question-button">
</form>
</div>
<div class="post-form__right">
<form class="post-form__form" method="POST" action="#" accept-charset="UTF-8">
<div class="form__section post-form__textarea-container">
<textarea class="form__input post-form__textarea" type="text" name="body" placeholder="Write your entry"></textarea>
</div>
<div class="post-form__bottom">
<div class="form__section form__button-row post-form__buttons">
<input class="form__button button button--ghost" type="submit" name="type" value="Save Draft">
<input class="form__button button button--ghost" type="submit" name="type" value="Publish">
</div>
</div>
</form>
</div>
</div>
fiddle 的 css:
.post-form {
position: relative;
display: flex;
border: 1px solid black;
height: 200px;
}
.post-form__left {
flex: 1 0 33.33%;
text-align: center;
}
.post-form__right {
flex: 3 0 66.67%;
}
.post-form__question-button {
display: block;
margin: auto;
}
.post-form__left textarea {
margin: auto;
width: 90%;
}
.post-form__right textarea {
width: 100%;
height: 150px;
box-sizing: border-box;
}
.post-form__bottom {
position: absolute;
}
我需要“post-form__bottom”div,带有“Save Draft”和“Publish”按钮,在顶层“post-form”中居中。在 fiddle 中,按钮需要在红色框中居中。我尝试在“post-form__bottom”上设置绝对位置,但那没有任何作用。我试着弄乱负利润率,但那真的很乱,我永远做不好。任何帮助将不胜感激。
解决方案将宽度设置为 100%。菜鸟错误!
https://jsfiddle.net/as2e4d0d/6/
最佳答案
这是使按钮表单居中的方法。
你不应该使用
.post-form__bottom {
position:absolute;
}
将其更改为它将使您的按钮表单居中
.post-form__bottom {
position: relative;
text-align:center;
}
关于html - 在表单外的 div 中居中表单项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37518048/
我有一张用户表 users +------+ - user_id ... ... - updated_by 据我所知,updated_by 列应该在 user_id 列上引用此表。我不确定,这
我是 SQL 新手,我有 2 个包含这些列的表: table structures__|id|name|nation_id|image| table nations______|id|nation|
我正在使用 codeigniters sql 选择来选择不在一组 id 中的用户。 $this->db->select('fbuid')->where_in('fbuid', $friends); $
找不到具体的答案所以我想问一下。简而言之,我有一个表,它根据存储在我的数据库中的数据从 API 检索信息,我想要做的就是从该表中获取某些列的总数,而不是全部列,以便我可以在其他地方使用它们网站。例如,
这是 phpMyAdmin 为我生成的 SQL 语句: SELECT * FROM `table_name` WHERE 1 可以看到 table_name 被 ` 字符包围。 为什么? 最佳答案 用
我有两个这样的表 我想在这里从 Table1 插入到 Table2。这就是我想要的。 取 MOU = 10。它在同一行中有 num1 和 hour1。我想将它插入到与 num1 同一行与 hour1
我的任务是使用 C++ 编写一个程序,以使用 Gamma 分布计算概率。如果我已经找到函数值,如何将其更改为 Gamma 分布表中的值?我不知道公式。 例如Fg(8;8),在表中为0.5470。而表中
我在查看 HTML 电子邮件时遇到问题,需要格式化 css 以与 HTML 脚本内联。 我有多个表使用的以下 td css。 td.gridtopleft { border-left: solid
我正在使用来自 pip 的最新 sqlalchemy 和最新的 pymssql 连接 mssql 服务器 8.00.2039(2005 年?)困难在于表和列名称是俄语。是否可以用 sqlalchemy
我有一个有趣的问题 - 我需要 JOIN 语句的完全相反。 我有一个名为 invoices 的表和另一个名为 payments 的表。我想按顺序检索没有任何付款的发票,但之后是有付款的行。 发票表有这
我有两个表: 主题:[id, ...] 类别:[主题.id, ...] 我想从表 #1 中选择所有主题,但不包含 #2(类别)中的条目。 任何提示表示赞赏(: 最好的问候 最佳答案 Sachin 已经
MYSQL: 我正在使用表 information_schema.tables 中的 AUTO_INCRMENT 列来获取下一个 id。 如下: SELECT AUTO_INCREMENT FROM
我是一名优秀的程序员,十分优秀!