- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我想尝试将其变成桌面平板电脑和手机的响应式设计,我很难让 youtube 视频响应式 - 任何人都可以帮忙吗?谢谢 真的很感激
我在想我需要对 CSS 进行某种媒体查询,但我不太确定该怎么做 - 如果有人能向我解释它是如何工作的,我将不胜感激
HTML:
.mytable {
margin-bottom: 20px;
font-family: "Helvetica", "Arial";
border: none;
border-radius: 3px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
}
.mytable td {
color: #22313F;
text-align: left;
border-radius: 0.75em;
font-weight: bold;
padding: 0.4em 2em 0.7em 1.15em;
text-shadow: 0 0 1px rgba(255, 255, 255, 0.1);
font-size: 0.9em;
}
.mytable tr {
-webkit-transition: background 0.3s, box-shadow 0.3s;
-moz-transition: background 0.3s, box-shadow 0.3s;
transition: background 0.3s, box-shadow 0.3s;
}
#container {
margin: 1em auto;
max-width: 1500px;
padding: 0;
text-align: center;
color: #22313F;
}
#principal,
aside {
border-radius: 1em;
display: inline-block;
margin: 0.25em auto;
max-width: 960px;
min-height: 200px;
padding: 0.65em;
text-align: center;
vertical-align: top;
width: 65%;
}
article {
background: #22313F;
border-radius: 0.5em;
min-height: 140px;
padding: 0.25em;
}
aside {
width: 30%;
}
<section id="container">
<section id="principal">
<article>
<iframe width="640" height="360" src="https://www.youtube.com/embed/RUina9K2Y8g?controls=0&showinfo=0" frameborder="0" allowfullscreen></iframe>
</article>
</section>
<aside>
<table class="mytable">
<tr>
<td></td>
<td style="background-color:#6C7A89"><font color=#FFF><font size="4">My List of Stuff</font>
</td>
</tr>
<tr>
<td>
<img src="https://cdn4.iconfinder.com/data/icons/ionicons/512/icon-ios7-checkmark-outline-128.png" height="42" width="42">
</td>
<td>Filler One</td>
</tr>
<tbody>
<tr>
<td>
<img src="https://cdn4.iconfinder.com/data/icons/ionicons/512/icon-ios7-checkmark-outline-128.png" height="42" width="42">
</td>
<td>Filler Two</td>
</tr>
<tr>
<td>
<img src="https://cdn4.iconfinder.com/data/icons/ionicons/512/icon-ios7-checkmark-outline-128.png" height="42" width="42">
</td>
<td>Filler Three</td>
</tr>
<tr>
<td>
<img src="https://cdn4.iconfinder.com/data/icons/ionicons/512/icon-ios7-checkmark-outline-128.png" height="42" width="42">
</td>
<td>Filler Four</td>
</tr>
<tr>
<td>
<img src="https://cdn4.iconfinder.com/data/icons/ionicons/512/icon-ios7-checkmark-outline-128.png" height="42" width="42">
</td>
<td>Filler Five</td>
</tr>
</tr>
</tbody>
</table>
</aside>
</section>
最佳答案
1) 我已经为 JSFiddle 准备了工作示例。视频现在可以响应了,但我不知道您希望视频和表格的具体定位方式。 http://jsfiddle.net/8w2m9xdz/1/
2) 我已经更新了您的代码。视频是响应式的。当你缩小窗口时,表格会移动到视频下方,所以在移动设备上应该很好,但你需要自己测试。
.mytable {
margin-bottom: 20px;
font-family: "Helvetica", "Arial";
border: none;
border-radius: 3px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
width:100%;
}
.mytable td {
color: #22313F;
text-align: left;
border-radius: 0.75em;
font-weight: bold;
padding: 0.4em 2em 0.7em 1.15em;
text-shadow: 0 0 1px rgba(255, 255, 255, 0.1);
font-size: 0.9em;
}
.mytable tr {
-webkit-transition: background 0.3s, box-shadow 0.3s;
-moz-transition: background 0.3s, box-shadow 0.3s;
transition: background 0.3s, box-shadow 0.3s;
}
#container {
margin: 1em auto;
max-width: 1500px;
padding: 0;
text-align: center;
color: #22313F;
}
#principal,
aside {
border-radius: 1em;
display: inline-block;
margin: 0.25em auto;
max-width: 960px;
min-height: 200px;
padding: 0.65em;
text-align: center;
vertical-align: top;
width: 65%;
}
article {
background: #22313F;
border-radius: 0.5em;
min-height: 140px;
padding: 0.25em;
}
aside {
width: 30%;
}
/* Style that fixes your issue */
#principal article {
position: relative;
padding-bottom: 56.25%;
}
#principal article iframe {
width: 100%;
height: 100%;
position:absolute;
left: 0;
top: 0;
}
}
<section id="container">
<section id="principal">
<article>
<iframe src="https://www.youtube.com/embed/RUina9K2Y8g?controls=0&showinfo=0" frameborder="0" allowfullscreen></iframe>
</article>
</section>
<aside>
<table class="mytable">
<tr>
<td></td>
<td style="background-color:#6C7A89"><font color=#FFF><font size="4">My List of Stuff</font>
</td>
</tr>
<tr>
<td>
<img src="https://cdn4.iconfinder.com/data/icons/ionicons/512/icon-ios7-checkmark-outline-128.png" height="42" width="42">
</td>
<td>Filler One</td>
</tr>
<tbody>
<tr>
<td>
<img src="https://cdn4.iconfinder.com/data/icons/ionicons/512/icon-ios7-checkmark-outline-128.png" height="42" width="42">
</td>
<td>Filler Two</td>
</tr>
<tr>
<td>
<img src="https://cdn4.iconfinder.com/data/icons/ionicons/512/icon-ios7-checkmark-outline-128.png" height="42" width="42">
</td>
<td>Filler Three</td>
</tr>
<tr>
<td>
<img src="https://cdn4.iconfinder.com/data/icons/ionicons/512/icon-ios7-checkmark-outline-128.png" height="42" width="42">
</td>
<td>Filler Four</td>
</tr>
<tr>
<td>
<img src="https://cdn4.iconfinder.com/data/icons/ionicons/512/icon-ios7-checkmark-outline-128.png" height="42" width="42">
</td>
<td>Filler Five</td>
</tr>
</tr>
</tbody>
</table>
</aside>
</section>
关于html - 我怎样才能让这个容器和 table 响应手机和 ipad 的大小?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29068226/
这个问题在这里已经有了答案: What is the best way to parse html in C#? [closed] (15 个答案) 关闭 3 年前。 string input =
为什么 wrapper #4 没有继承其父表容器的高度?表格嵌套在一个显示 block 包装器中,每个嵌套的div是显示表格,每个表格继承到最里面的一个。是什么原因造成的,我该如何解决? jsfidd
我正在使用带有 Bootstrap 的自定义 css 作为外边框。但顶部边框不可见,除非我将其大小设置为 2 px。 我该如何解决这个问题? HTML #name 1.one 2.two 3.thr
我正在逻辑层面上设计一个数据库,以便稍后将其传递给程序员来交付。我只是粗略地了解它们的工作原理,所以我很难简洁地表达我的问题。这是我的问题: 我有一个名为 MEANINGS 的表。 我有一个名为 WO
在 Laravel 上,我们可以使用 DB::table('table')->get(); 或使用 model::('table')->all() 进行访问;我的问题是它们之间有什么区别? 谢谢。 最
我试图从以下内容中抓取 URL从 WorldOMeter 获取 CoVid 数据,在此页面上存在一个表,id 为:main_table_countries_today其中包含我希望收集的 15x225
这是我的图表数据库:/image/CGAwh.png 我用 SEQUELIZE 制作了我的数据库模型: 型号:级别 module.exports = (sequelize, DataTypes) =>
我真的不明白为什么我的代码不能按预期工作。当我将鼠标悬停在表格的每一行上时,我想显示一个图像(来 self 之前加载的 JSON)。每个图像根据行的不同而不同,我想将它们显示在表格之外的另一个元素中。
假设我的数据库中有一张地铁 map ,其中每条线路的每个站点都是一行。如果我想知道我的线路在哪里互连: mysql> SELECT LineA.stop_id FROM LineA, LineB WH
我最近经常使用这些属性,尤其是 display: table-cell。它在现代浏览器中得到了很好的支持,并且它对某些网格有很多好处,并且可以非常轻松地对齐内容,而无需棘手的标记。但在过去的几天里,我
在 CSS 中,我可以这样做: http://s1.ipicture.ru/uploads/20120612/Uk1Z8iZ1.png http://s1.ipicture.ru/uploads/20
问题作为标题,我正在学习sparkSQL,但我无法很好地理解它们之间的区别。谢谢。 最佳答案 spark.table之间没有区别& spark.read.table功能。 内部 spark.read.
我正在尝试根据 this answer 删除表上的非空约束.但是,它似乎没有在 sqlite_sequence 中创建条目。这样做之后,即使我可以在使用测试表时让它正常工作。 有趣的是,如果我备份我的
var otable = new sap.m.Table();//here table is created //here multiple header I'm trying to create t
下面两种方法有什么区别: 内存 性能 答: select table.id from table B: select a.id from table a 谢谢(抱歉,如果我的问题重复)。 最佳答案 完
我尝试在表格后添加点,方法是使用 table::after 选择器创建一个点元素并使用 margin: 5px auto 5px auto; 将其居中。它有效,但似乎在第一个表格列之后添加了点,而不是
我正在设计一个可以标记任何内容的数据库,我可能希望能够选择带有特定标记的所有内容。 我正在为以下两个选项而苦苦挣扎,希望得到一些建议。如果有更好的方法请告诉我。 选项A 多个“多对多”连接表。 tag
"center" div 中的下表元素导致 "left" div 中的内容从顶部偏移几个像素(在我的浏览器中为 8 ).在表格之前添加一些文本可消除此偏移量。 为什么?如何在不要求在我的表格前添加“虚
我是一名优秀的程序员,十分优秀!