- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当我在css *
(星号)中使用它来选择父级的所有子级时,所有子级元素将相互浮动。奇怪的是,当我为<header>
元素更改星号并将其也添加到我的HTML的标记中时,所有子元素都将彼此定位。
为什么是这样?
当布局销毁时,我使用以下方法:
<article class="grid_12 post-entry">
<a href="#" title="">
<figure class="post-thumb">
<img src="images/placehold-blog.png" alt="Placehold">
<figcaption class="center">
<p>Entry</p>
<h3>Showreel video.</h3>
<p>By Casper Biemans / On June 3, 2014 / In Digital Art</p>
<div class="button tertiaire">Read more →</div>
</figcaption><!-- End figcaption -->
</figure><!-- End figure.post-thumb -->
</a>
</article><!-- End article.grid_12 post-entry -->
.blog .post-entry figure { height: 420px; }
.blog .post-entry figcaption {
display: table;
background: rgba(0, 0, 0, .65);
}
.blog .post-entry figcaption > * {
padding: 0;
display: table-cell;
vertical-align: middle;
}
<article class="grid_12 post-entry">
<a href="#" title="">
<figure class="post-thumb">
<img src="images/placehold-blog.png" alt="Placehold">
<figcaption class="center”>
<header>
<p>Entry</p>
<h3>Showreel video.</h3>
<p>By Casper Biemans / On June 3, 2014 / In Digital Art</p>
<div class="button tertiaire">Read more →</div>
</header>
</figcaption><!-- End figcaption -->
</figure><!-- End figure.post-thumb -->
</a>
</article><!-- End article.grid_12 post-entry -->
.blog .post-entry figure { height: 420px; }
.blog .post-entry figcaption {
display: table;
background: rgba(0, 0, 0, .65);
}
.blog .post-entry figcaption header {
padding: 0;
display: table-cell;
vertical-align: middle;
}
最佳答案
您发布的HTML的第二个块无效,因为有一个奇怪的“字符不会终止文本。这意味着您的CSS可能在”完美布局“版本中无法正常工作。
看到这里:http://jsfiddle.net/s2as09z6/1/
顽皮的角色在下面突出显示:
<article class="grid_12 post-entry">
<a href="#" title="">
<figure class="post-thumb">
<img src="images/placehold-blog.png" alt="Placehold">
<figcaption class="center”> <!----- Bad "!
<header>
<p>Entry</p>
<h3>Showreel video.</h3>
<p>By Casper Biemans / On June 3, 2014 / In Digital Art</p>
<div class="button tertiaire">Read more →</div>
</header>
</figcaption><!-- End figcaption -->
</figure><!-- End figure.post-thumb -->
</a>
</article><!-- End article.grid_12 post-entry -->
关于css - CSS *(星号)会破坏布局。怎么修?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25648347/
*args 和 **kwargs 是什么意思? def foo(x, y, *args): def bar(x, y, **kwargs): 最佳答案 *args 和 **kwargs 是一个常见的惯
*args 和 **kwargs 是什么意思? def foo(x, y, *args): def bar(x, y, **kwargs): 最佳答案 *args 和 **kwargs 是一个常见的惯
*args 和 **kwargs 是什么意思? def foo(x, y, *args):def bar(x, y, **kwargs): 最佳答案
在python文档中2.4.3. Formatted string literals ,似乎可以在 f 字符串的 {} 中写一个星号后跟一个表达式,但我找不到如何使用它。 那是什么以及如何使用它?它是
这些函数定义中的*args和**kwargs是什么意思? def foo(x, y, *args): pass def bar(x, y, **kwargs): pass 参见Wha
这些函数定义中的*args和**kwargs是什么意思? def foo(x, y, *args): pass def bar(x, y, **kwargs): pass 参见Wha
这个问题在这里已经有了答案: Delegated yield (yield star, yield *) in generator functions (3 个答案) 关闭 6 年前。 假设我创建了
我有时注意到使用 *偶尔搜索光标下的单词会有略微不同的行为(通常是当我在不同的计算机之间切换时)。问题是当我搜索前面有 * 的单词时(如 c++ 指针)。例如: MyPointer *foo; ...
This question already has answers here: Keyword only parameter (1个答案) Python documentation for os.re
这是我的数据: dput(dt) structure(c(15236000, 0, 0, 0, 0, 36722900, 45971100, 0, 0, 0, 0, 99067
所以我有一个看起来像这样但有 6k 行的数据框: AWC, LocationID 333, *Yukon 485, *Lewis Rich 76, *Kodiak 666, Kodiak 54, *R
我有一个简单的问题。我想列出我们可以使用关键字星号(或星号)* 的所有场景。 我只知道这些场景: Select * from Customers; Select Count(*) from Custo
瑞安·贝茨的Railscast about git ,他的 .gitignore 文件包含以下行: tmp/**/* 使用双星号后跟一个星号的目的是什么:**/*?简单地使用 tmp/* 而不是 tm
我想以这种方式选择带有 class="x"的元素的所有后代元素: .x * { color: red; } a b
这个问题在这里已经有了答案: What does ** (double star/asterisk) and * (star/asterisk) do for parameters? (25 个答案
最近我在 Programming Paradigms 上看到了这个视频和教授。使用星号、星形和符号等术语。 这就是他如何使用这些运算符的: int i = 37; float f = *(float*
我尝试在自定义按钮中居中对齐符号星号 (*),但我做不到。 如何像其他字符一样垂直居中对齐(1,2...)? 最佳答案 只需使用不同的字符。除了 * (ASTERISK U+002A),还有许多其他类
结论 概括的来说,就是对修饰的变量进行拆分, 对修饰的形式参数进行参数聚集。 单*号,将被修饰的变量按元素方式拆分, 对修饰的形式参数进行参数聚集。 双**号,将被修饰的变量按键值对进行拆分, 对
如果我想保持功能,并且不想在中间使用 *,那么等效的替代函数是什么?例如, import operator as op print(op.eq(*map(str.upper, ['a', 'A']))
我窥视 ng2-dropdown 我可以看到(ng2-dropdown-menu.ts) 除其他事项外 transition('hidden => visible', [
我是一名优秀的程序员,十分优秀!