- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在尝试为我的学校新闻 channel 创建一个网站,并且正在为每个 Actor 制作个人资料卡。
不过现在,卡片对齐的方式很奇怪,它只停留在前 40% 左右,我找不到任何导致它的原因。
Here's a screenshot about what I'm talking about
您看到那些上面写着 John Doe 的白色卡片,以及它们在左侧的样子了吗?是的,我试图让它填满整个页面,但我所做的一切都不起作用
这里是所有代码,如果有人需要的话。卡片本身位于“部分”标签中,在它们各自的 div 标签中:
body {
margin: 0px;
background: -webkit-linear-gradient(left top, #092f6e, #0093FF);
background: -o-linear-gradient(bottom right, #092f6e, #0093FF);
background: -moz-linear-gradient(bottom right, #092f6e, #0093FF);
}
color: #f7f7f7;
font-family:"Swis721 Lt BT",
sans-serif;
font-weight: 300;
}
#header {
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
#video {
position: absolute;
-webkit-filter: saturate(1.25);
filter: saturate(1.25);
}
#MUTV {
position: absolute;
margin-top: 10%;
margin-left: 60%;
max-width: 100%;
width: 10%;
height: 10%;
background-color: #dddddd
}
#headerText {
position: absolute;
color: #FFFFFF;
font-family: "Swis721 Lt BT";
font-size: 35px;
margin-top: 10%;
margin-left: 7.5%
}
#headerTextContainer {
width: 50%;
height: 50%;
max-width: 50%;
}
.navContainer {
margin: auto;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-align-content: center;
-ms-flex-line-pack: center;
align-content: center;
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
width: 100%;
max-width: 100%;
margin-top: 27%;
}
.button {
font-family: "Swis721 Lt BT";
font-size: 150%;
color: #ffffff;
text-decoration: none;
width: 10%;
-webkit-box-flex: 1;
-webkit-flex: 1 1 auto;
-ms-flex: 1 1 auto;
flex: 1 1 auto;
padding: 15px;
border: 2px solid #f7f7f7;
text-align: center;
position: relative;
overflow: hidden;
-webkit-transition: .5s;
transition: .5s;
}
.button:after {
position: absolute;
-webkit-transition: .5s;
transition: .5s;
content: '';
width: 0;
left: 50%;
bottom: 0;
height: 3px;
background: #f7f7f7;
height: 120%;
left: -10%;
-webkit-transform: skewX(20deg);
-ms-transform: skewX(20deg);
transform: skewX(20deg);
z-index: -1;
}
.button:hover {
cursor: pointer;
color: #008cff;
}
.button:hover:after {
width: 100%;
left: 0% left: -10%;
width: 120%;
}
.active {
font-family: "Swis721 Lt BT";
font-size: 150%;
color: #008cff;
background-color: #ffffff;
text-decoration: none;
width: 18%;
padding: 15px;
border: 2px solid #f7f7f7;
text-align: center;
position: relative;
overflow: hidden;
}
main {
margin-top: 5%
}
section {
display: table-row;
}
.card {
display: table-cell;
background-color: #FFFFFF;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
max-width: 300px;
margin: auto;
text-align: center;
}
.cardContainer {
padding: 0 16px;
}
.title {
color: grey;
font-size: 18px;
}
<div id="header">
<video id="video" width="100%" autoplay loop>
<source src="This PC/Documents/FahadKhan_FinalProject/Images/Background.mp4"</source>
</video>
<br>
<a href="https://www.youtube.com/channel/UCJTD2hhiUEf9F5TXukZj8PA" target="_blank" id="MUTV">
</a>
<div id="headerTextContainer">
<h1 id="headerText">The guys in front and behind the camera<br>The magic behind it all!</h1>
</div>
</div>
<nav class="navContainer">
<a class="button" href="United TV - Home.html">HOME</a>
<a class="button" href="United TV - News.html">NEWS</a>
<a class="button" href="United TV - About.html">ABOUT</a>
<div class="active">CAST</div>
<a class="button" href="United TV - Contact.html">CONTACT</a>
</nav>
<main>
<section>
<div class="card">
<img src="img.jpg" alt="John" style="width:100%">
<div class="cardContainer">
<h1>John Doe</h1>
<p class="title">CEO & Founder, Example</p>
<p>Harvard University</p>
<br>
</div>
</div>
<br>
<div class="card">
<img src="img.jpg" alt="John" style="width:100%">
<div class="cardContainer">
<h1>John Doe</h1>
<p class="title">CEO & Founder, Example</p>
<p>Harvard University</p>
<br>
</div>
</div>
<br>
<div class="card">
<img src="img.jpg" alt="John" style="width:100%">
<div class="cardContainer">
<h1>John Doe</h1>
<p class="title">CEO & Founder, Example</p>
<p>Harvard University</p>
<br>
</div>
</div>
</section>
</main>
我知道需要通读的内容很多,但如果有人能找到答案,我将不胜感激。谢谢:)
最佳答案
这是您想要实现的目标吗? https://codepen.io/gyerroju/pen/KqgwEr
基本上,我有:
ccontainer(和更新后的 .card 类)的 CSS 如下:
.ccontainer {
text-align: center;
display: block;
}
.card {
display: inline-block;
}
请注意,如果向后兼容性不太重要,除了使用 CSS 网格和 flexbox 属性的表格之外,还有其他布局方法。有关布局的更多信息,请参见此处 https://css-tricks.com/guides/layout/
该页面上的文章非常适合阅读,并让您了解哪些选项可用以及可以做什么。
关于html - 配置文件卡未正确对齐,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44533665/
在 Android 的 API > 19 中是否有任何方法可以获取可移动 SD 卡的路径? 与外部 SD 卡一样,我们有 Environment.getExternalStorageDirectory
一些 Android 设备有 microSD(或其他存储卡)插槽,通常安装为 /storage/sdcard1 据我所知,自 Android 4.4 起 Google 限制了对此内存的访问,并在 An
我使用 Java Card 2.1.2 SDK 和 GPShell 作为与设备通信的方式在 Java Card 上构建一个项目。我从 GpShell 测试了 helloworld 示例,并成功发送了
我开发了一个应用程序,它有一个来电接收器,它适用于所有手机。一位用户有一部双 SIM 卡安卓手机。该应用程序适用于第一张 SIM 卡。但是当有人调用他的第二张 SIM 卡时,我们的应用程序不会被调用。
我有一个带预览的文件输入。 这是笔 Codepen 我想强制高度,我无法理解我该怎么做。我想将此组件的高度固定为 300px(示例),我还需要保持加载图像的正确纵横比,用灰色背景填充空白。现在我保持宽
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 想改进这个问题?将问题更新为 on-topic对于堆栈溢出。 6年前关闭。 Improve this qu
我正在使用此代码访问 SD card : import os from os.path import join from jnius import autoclass #from android.pe
我正在为数据记录设备编写固件。它以 20 Hz 的频率从传感器读取数据并将数据写入 SD 卡。但是,向SD卡写入数据的时间并不一致(大约200-300 ms)。因此,一种解决方案是以一致的速率将数据写
我正在使用以下代码将视频放到网站上,但是在垂直方向上,手机屏幕上只能看到视频的左半部分 我不是网络开发人员。有人可以告诉我确切的内容吗,如何使其正确放置在手机屏幕上? 是在youtube iframe
我正在使用 Vuetify 1.5 和 Vuetify 网格系统来设置我的布局。现在我有一个组件 HelloWorld我将其导入到我的 Parent 中成分。我已经在我的 HelloWorld 中设置
我使用 python 制作了一个简单的二十一点游戏。我制作了游戏的其余部分,但我正在努力放入 ASCII 卡,所以这只是代码的一小部分。我尝试将 * len(phand) 放在附加行的末尾。虽然这确实
我正在使用玩家卡设置 Twitter 卡。它可以在预览工具中运行,但文档说它需要在“twitter.com 现代桌面浏览器? native iOs 和 Android Twitter 应用程序?mob
任何旧的 GSM 兼容 SIM 卡(3G USIM 的奖励)。 我想我需要一些硬件?谁能为业余爱好者推荐一些便宜的东西,以及一些更专业的东西? 我认为会有一个带有硬件的 API 的完整文档,所以也许这
我使用 python 制作了一个简单的二十一点游戏。我制作了游戏的其余部分,但我正在努力放入 ASCII 卡,所以这只是代码的一小部分。我尝试将 * len(phand) 放在附加行的末尾。虽然这确实
我记得前一段时间读到有 cpu 卡供系统添加额外的处理能力来进行大规模并行化。任何人都有这方面的经验和任何资源来研究项目的硬件和软件方面吗?这项技术是否不如传统集群?它更注重功率吗? 最佳答案 有两个
我检查外部存储是否已安装并且可用于读/写,然后从中读取。我使用的是确切的官方 Android 示例代码 ( from here )。 它说外部存储未安装。 getExternalFilesDir(nu
在 Android 2.1 及更低版本中,Android 应用程序可以请求下载到 SD 卡上吗?另外我想知道应用程序是否可以请求一些包含视频的文件夹下载到 SD 卡上?以及如何做到这一点? 提前致谢。
我们编写了一个 Windows 设备驱动程序来访问我们的自定义 PCI 卡。驱动程序使用 CreateFile 获取卡的句柄。 我们最近在一次安装中遇到了问题,卡似乎停止工作了。我们尝试更换卡(更换似
有些新设备(例如 Samsung Galaxy)带有两个 SD 卡。我想知道是否有任何方法可以确定设备是否有两张 SD 卡或一张 SD 卡。谢谢 最佳答案 我认为唯一的方法是使用 检查可用根的列表 F
我正在尝试将文件读/写到 SD 卡。我已经尝试在我的真实手机和 Eclipse 中的模拟器上执行此操作。在这两种设备上,对/mnt/sdcard/或/sdcard 的权限仅为“d--------”,我
我是一名优秀的程序员,十分优秀!