- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
在这个SSCCE中,我给了一个display:table
属性(property).container
,其中包含 <section>
带有 display:table-row
的元素属性(property),每个section
有一个 <img>
与 display:table-cell
属性,另一个嵌套的 <section>
与 display:table-cell
属性(property)。
在第一列中,每个表格单元格都包含一个图像,因为我在该列的表格单元格上使用了负边距底部,所以第一列中的所有图像都给出了一个图像的外观/错觉。
我想要的是 .container
div
(与 display:table;
)应该得到一个 height
“视口(viewport)的高度(即没有滚动的可见屏幕大小)减去 padding-top
和 padding-bottom
的 200px
。”这样第一列中的幻觉就会缩小到那个尺寸。
@import url(<link href='http://fonts.googleapis.com/css?family=Open+Sans:700,300,600,400' rel='stylesheet' type='text/css'>);
.section-big {
padding: 100px 0;
}
.section-big .container {
width: 970px;
margin: 200px auto;
}
.section-big .col {
width: 47%;
}
.section-big .col-left {
float: left;
text-align: right;
padding-right: 25px;
}
.section-big .col-right {
float: left;
text-align: left;
padding-left: 25px;
}
.section-big .col-left img {
height: 80%;
width: 50%;
}
h3 {
color: #6c6969;
transition: color 0.3s ease 0s;
font-family: 'Open Sans', sans-serif;
font-weight: 600;
font-size: 40px;
}
h5 {
color: #6c6969;
transition: color 0.3s ease 0s;
font-family: 'Open Sans', sans-serif;
font-weight: 400;
font-size: 20px;
}
.container {
display: table;
margin: 200px auto;
}
.container>section {
display: table-row;
}
.col1td,
.col2td {
display: table-cell;
vertical-align: middle;
padding: 0px 25px;
/*height: 250px;*/
}
.top1 {
vertical-align: bottom;
margin-bottom: -64px;
}
.top2 {
vertical-align: top;
margin-bottom: -62px;
/*margin-left:45px;*/
}
.top3 {
vertical-align: top;
margin-bottom: -62px;
/*margin-left:45px;*/
}
.top5 {
vertical-align: top;
margin-bottom: -62px;
/*margin-left:25px;*/
}
.section-big {
height: 100vh;
padding: 0px;
margin: 0px;
}
<div class="section-big">
<div class="container">
<section class="section-one">
<img class="col1td top1" src="http://www.mediafire.com/convkey/0a97/utelxs08krq3fd3zg.jpg" alt="ton ton 1">
<section class="col2td">
<h3>HEADING</h3>
<h5>Paragraph paragraph</h5>
</section>
</section>
<section class="section-two">
<img class="col1td top2" src="http://www.mediafire.com/convkey/7f55/jsl7mw25qbs3e54zg.jpg" alt="ton ton 2">
<section class="col2td">
<h3>HEADING</h3>
<h5>Paragraph paragraph</h5>
</section>
</section>
<section class="section-three">
<img class="col1td top3" src="http://www.mediafire.com/convkey/6e7e/jjd597oeexkd5h4zg.jpg" alt="ton ton 3">
<section class="col2td">
<h3>HEADING</h3>
<h5>Paragraph paragraph</h5>
</section>
</section>
<section class="section-four">
<img class="col1td top5" src="http://www.mediafire.com/convkey/d99d/4g75pbwt1c59971zg.jpg" alt="ton ton 5">
<section class="col2td">
<h3>HEADING</h3>
<h5>Paragraph paragraph</h5>
</section>
</section>
</div>
</div>
我尝试了什么:
我看到了 this example , 并试图给出 height:500px;
还有作为height:50%;
在给出 body
之后一个height:100%;
, 但是那个好像没有什么作用。
我看到了 this SO question并给出了 .section-big
A height:100vh
所以如果我给.container
(这 display:table
元素)百分比 height
(这将是计算为 .section-big
高度的 X% ).所以我给了.container
一个height:80%;
并调整了 margin-bottom
第一列的表格单元格的 s,结果为 JSFiddle . 但是
首先,section-big
确实得到 height:100vh
正如我所见经过 在 Google chrome 检查器中将鼠标悬停在它上面,但是 100vh 是 溢出到可见视口(viewport)下方,如下图所示 图。
其次,连body
不是从文档的顶部开始的如下图所示。
三、.container
从其父级流出/溢出 section-big
.
JSFiddle 在这里。所以我不知道该怎么做!
最佳答案
试试这个..它可以帮助...
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.2.3/jquery.min.js"></script>
<div class="heading-bar">
<u>
<li><a class="js-scroll" href="#section-one">section1</a></li>
<li><a class="js-scroll" href="#section-two">section2</a></li>
<li><a class="js-scroll" href="#section-three">section3</a></li>
<li><a class="js-scroll" href="#section-four">section4</a></li>
</u>
<header>
<h1>heading</h1>
</header>
</div>
<div class="container">
<section id="section-one">
<img class="col1td top1" src="http://www.mediafire.com/convkey/0a97/utelxs08krq3fd3zg.jpg" alt="ton ton 1">
<section class="col2td">
<h3>HEADING</h3>
<h5>Paragraph paragraph</h5>
</section>
</section>
<section id="section-two">
<img class="col1td top2" src="http://www.mediafire.com/convkey/7f55/jsl7mw25qbs3e54zg.jpg" alt="ton ton 2">
<section class="col2td">
<h3>HEADING</h3>
<h5>Paragraph paragraph</h5>
</section>
</section>
<section id="section-three">
<img class="col1td top3" src="http://www.mediafire.com/convkey/6e7e/jjd597oeexkd5h4zg.jpg" alt="ton ton 3">
<section class="col2td">
<h3>HEADING</h3>
<h5>Paragraph paragraph</h5>
</section>
</section>
<section id="section-four">
<img class="col1td top5" src="http://www.mediafire.com/convkey/d99d/4g75pbwt1c59971zg.jpg" alt="ton ton 5">
<section class="col2td">
<h3>HEADING</h3>
<h5>Paragraph paragraph</h5>
</section>
</section>
</div>
CSS
/*@import url(<link href='http://fonts.googleapis.com/css?family=Open+Sans:700,300,600,400' rel='stylesheet' type='text/css'>);*/
* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
margin: 0px;
padding: 0px;
}
.heading-bar {
height: 200px;
background-color: white;
position: fixed;
z-index: 100;
width: 100%;
min-width: 100%;
top: 0px;
text-align: center;
}
li {
direction: ltr;
text-decoration: none;
margin: 10px;
display: inline-block;
}
li a{
}
.container {
width: 80%;
overflow: scroll;
}
.section-big .col {
width: 47%;
}
.section-big .col-left {
float: left;
text-align: right;
padding-right: 25px;
}
.section-big .col-right {
float: left;
text-align: left;
padding-left: 25px;
}
.section-big .col-left img {
height: 80%;
width: 50%;
}
h3 {
color: #6c6969;
transition: color 0.3s ease 0s;
font-family: 'Open Sans', sans-serif;
font-weight: 600;
font-size: 40px;
}
h5 {
color: #6c6969;
transition: color 0.3s ease 0s;
font-family: 'Open Sans', sans-serif;
font-weight: 400;
font-size: 20px;
}
.container {
display: table;
margin: 200px auto;
}
.container>section {
display: table-row;
}
.col1td,
.col2td {
display: table-cell;
vertical-align: middle;
padding: 0px 25px;
/*height: 250px;*/
}
.top1 {
vertical-align: bottom;
margin-bottom: -64px;
}
.top2 {
vertical-align: top;
margin-bottom: -62px;
/*margin-left:45px;*/
}
.top3 {
vertical-align: top;
margin-bottom: -62px;
/*margin-left:45px;*/
}
.top5 {
vertical-align: top;
margin-bottom: -62px;
/*margin-left:25px;*/
}
.section-big {
height: 100vh;
padding: 0px;
margin: 0px;
}
JavaScript
$('.js-scroll').click(function(){
var headerHeight = 200;
$('body').animate({
scrollTop: $( $.attr(this, 'href') ).offset().top - headerHeight
}, 500);
return false;
});
关于html - 如何在不影响表格单元格负边距的情况下使此 div 显示为 :table take the height of 80% of its parent,,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30669358/
我的Angular-Component位于一个flexbox(id =“log”)中。可以显示或隐藏flexbox。 我的组件内部有一个可滚动区域,用于显示日志消息。 (id =“message-li
我真的很困惑 有一个 phpinfo() 输出: MySQL 支持 启用 客户端 API 版本 5.5.40 MYSQL_MODULE_TYPE 外部 phpMyAdmin 显示: 服务器类型:Mar
我正在研究这个 fiddle : http://jsfiddle.net/cED6c/7/我想让按钮文本在单击时发生变化,我尝试使用以下代码: 但是,它不起作用。我应该如何实现这个?任何帮助都会很棒
我应该在“dogs_cats”中保存表“dogs”和“cats”各自的ID,当看到数据时显示狗和猫的名字。 我有这三个表: CREATE TABLE IF NOT EXISTS cats ( id
我有一个字符串返回到我的 View 之一,如下所示: $text = 'Lorem ipsum dolor ' 我正在尝试用 Blade 显示它: {{$text}} 但是,输出是原始字符串而不是渲染
我无法让我的链接(由图像表示,位于页面左侧)真正有效地显示一个 div(包含一个句子,位于中间)/单击链接时隐藏。 这是我的代码: Practice
关闭。这个问题需要多问focused 。目前不接受答案。 想要改进此问题吗?更新问题,使其仅关注一个问题 editing this post . 已关闭 4 年前。 Improve this ques
最初我使用 Listview 来显示 oracle 结果,但是最近我不得不切换到 datagridview 来处理比 Listview 允许的更多的结果。然而,自从切换到数据网格后,我得到的结果越来越
我一直在尝试插入一个 Unicode 字符 ∇ 或 ▽,所以它显示在 Apache FOP 生成的 PDF 中。 这是我到目前为止所做的: 根据这个基本帮助 Apache XSL-FO Input,您
我正在使用 node v0.12.7 编写一个 nodeJS 应用程序。 我正在使用 pm2 v0.14.7 运行我的 nodejs 应用程序。 我的应用程序似乎有内存泄漏,因为它从我启动时的大约 1
好的,所以我有一些 jQuery 代码,如果从下拉菜单中选择了带有前缀 Blue 的项目,它会显示一个输入框。 代码: $(function() { $('#text1').hide();
当我试图检查 Chrome 中的 html 元素时,它显示的是 LESS 文件,而 Firefox 显示的是 CSS 文件。 (我正在使用 Bootstrap 框架) 如何在 Chrome 中查看 c
我是 Microsoft Bot Framework 的新手,我正在通过 youtube 视频 https://youtu.be/ynG6Muox81o 学习它并在 Ubuntu 上使用 python
我正在尝试转换从 mssql 生成的文件到 utf-8。当我打开他的输出 mssql在 Windows Server 2003 中使用 notepad++ 将文件识别为 UCS-2LE我使用 file
很难说出这里问的是什么。这个问题是含糊的、模糊的、不完整的、过于宽泛的或修辞性的,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开它,visit the help center 。 已关
我正在尝试执行单击以打开/关闭一个 div 的功能。 这是基本的,但是,点击只显示 div,当我点击“关闭”时,没有任何反应。 $(".inscricao-email").click(function
假设我有 2 张卡片,屏幕上一次显示一张。我有一个按钮可以用其他卡片替换当前卡片。现在假设卡 1 上有一些数据,卡 2 上有一些数据,我不想破坏它们每个上的数据,或者我不想再次重建它们中的任何一个。
我正在使用 Eloquent Javascript 学习 Javascript。 我在 Firefox 控制台上编写了以下代码,但它返回:“ReferenceError:show() 未定义”为什么?
我正在使用 Symfony2 开发一个 web 项目,我使用 Sonata Admin 作为管理面板,一切正常,但我想要做的是,在 Sonata Admin 的仪表板菜单上,我需要显示隐藏一些菜单取决
我试图显示一个div,具体取决于从下拉列表中选择的内容。例如,如果用户从列表中选择“现金”显示现金div或用户从列表中选择“检查”显示现金div 我整理了样本,但样本不完整,需要接线 http://j
我是一名优秀的程序员,十分优秀!