- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我已经尝试修复这个问题 2 个小时了,我什至重写了整个网站,只是为了看看是什么造成了溢出,并且刚刚意识到,当我添加我的“缩略图”组件时,它创建了一个水平溢出,这确实是令人沮丧。
这是我网站的精简版,尝试删除缩略图部分,您会发现一切正常。但随之而来的是溢出。
这是怎么回事?
http://codepen.io/kreitzo/pen/QyoRMx
index.html
<!DOCTYPE html>
<html lang="en">
<head>
<title>Kreitzo</title>
<link rel="shortcut icon" href="http://www.yoursite.com/favicon.ico?v=2" />
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="William Kreitz">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="./js/script.js"></script>
<script src="typed.js"></script>
<link href="css/bootstrap.css" rel="stylesheet">
<link href="css/styles.css" type="text/css" rel="stylesheet" />
</head>
<body>
<main>
<nav>
<div id="nav_wrapper">
<ul>
<li><a href="#">Home</a>
</li>
<li><a href="#">About me</a>
</li>
<li><a href="#">Work</a>
</li>
<li><a href="#">Contact</a></li>
</ul>
</div>
</nav>
<header>
<div class="jumbotron">
<div class="container">
<h1>Hey everyone!</h1>
<div class="applist_wrapper">
<p id="subject_title">Download my</p>
<p id="subjects" class="type-wrap"><span id="typed">Hello?</span></p>
</div>
</div>
</div>
</header>
<section>
<div class="row">
<div class="thumbnail"></div>
</div>
</section>
<footer>
<div class="container">
<div class="row">
<div class="col-xs-12">
<ul class="list-inline">
<li><a href="#">Home</a>
</li>
<li><a href="#">About me</a>
</li>
<li><a href="#">Work</a>
</li>
<li><a href="#">Contact</a></li>
</ul>
</div>
<div class="col-xs-12">
<p id="copyright">Copyright © WK 2016. All Rights Reserved</p>
</div>
</div>
</div>
</footer>
</main>
<script src="js/bootstrap.js"></script>
</body>
</html>
样式.css
/* Fonts */
@import url(https://fonts.googleapis.com/css?family=Quicksand:400,300);
/* Body */
html,
body {
padding: 0;
margin: 0;
font-family: 'Quicksand', sans-serif;
}
/* Nav */
nav {
background-color: #232323;
top: 0;
position: fixed;
width: 100%;
}
#nav_wrapper {
text-align: center;
}
nav ul {
margin: 0;
padding: 0;
}
nav ul li {
list-style-type: none;
display: inline-block;
padding: 15px;
-webkit-transition: background-color 0.5s;
/* Safari */
transition: background-color 0.5s;
}
nav ul li a {
text-decoration: none;
margin-right: 20px;
margin-left: 20px;
color: white;
text-transform: uppercase;
-webkit-transition: background-color 0.5s;
/* Safari */
transition: background-color 0.5s;
}
@media (min-width:400px) {
nav ul li a {
margin: 0;
}
;
}
nav ul li:hover {
background-color: #5d4037;
cursor: pointer;
}
nav ul li:hover a {
color: whitesmoke;
text-decoration: none;
}
/* Jumbotron */
.jumbotron {
margin-top: 50px;
}
.title {
text-transform: uppercase;
text-align: right;
padding: 0;
}
.jumbotron {
background: url(../images/DeathtoStock_Wired7.jpg) center center no-repeat;
background-size: 100% auto;
height: 500px;
}
.jumbotron .container {
text-align: right;
}
/* About */
#about {
margin-bottom: 120px;
}
.spacing {
margin-bottom: 50px;
}
/* App thumbnails */
.thumbnail {
color: #747704;
margin: 0;
}
.thumbnail img {
height: 250px;
width: 250px;
border-radius: 30px;
}
.thumbnail h3 {
text-transform: uppercase;
}
.image:hover {
-webkit-box-shadow: 0px 0px 20px 5px rgba(0, 185, 233, .75);
box-shadow: 0px 0px 20px 5px rgba(0, 185, 233, .75);
}
.image {
-webkit-transition: all 0.7s ease;
transition: all 0.7s ease;
}
/* Footer */
footer {
background-color: #232323;
padding: 50px;
}
footer a {
color: white;
text-transform: uppercase;
font-size: 10px;
-webkit-transition: color 0.5s;
/* Safari */
transition: color 0.5s;
}
footer a:hover {
color: #5d4037;
text-decoration: none;
}
footer #copyright {
color: dimgray;
}
/* application list autotyper */
.applist_wrapper p {
margin: 0;
padding: 0;
margin-left: 20px;
font-size: 40px;
display: inline-block;
line-height: 80px;
vertical-align: top;
}
@media (min-width:320px) {
.applist_wrapper p {
font-size: 20px;
}
;
}
@media (min-width:481px) {
.applist_wrapper p {
font-size: 30px;
}
;
}
@media (min-width:641px) {
.applist_wrapper p {
font-size: 35px;
}
;
}
#typed {
color: yellow;
}
/* cursor blinker */
.typed-cursor {
color: yellow;
opacity: 1;
-webkit-animation: blink 1s infinite;
-moz-animation: blink 1s infinite;
animation: blink 1s infinite;
}
@keyframes blink {
0% {
opacity: 1;
}
50% {
opacity: 0;
}
100% {
opacity: 1;
}
;
}
@-webkit-keyframes blink {
0% {
opacity: 1;
}
50% {
opacity: 0;
}
100% {
opacity: 1;
}
;
}
@-moz-keyframes blink {
0% {
opacity: 1;
}
50% {
opacity: 0;
}
100% {
opacity: 1;
}
;
}
最佳答案
在你的行标签前添加一个容器:
<section>
<div class="container">
<div class="row">
<div class="thumbnail"></div>
</div>
</div>
</section>
因为容器会自动为您提供 padding 和 margin 参数。
关于html - Bootstrap : Thumbnail is creating horizontal overflow,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35436863/
假设有一个创建用户的操作。如果存在指定的电子邮件或用户名,此操作可能会失败。如果它失败了,则需要确切地知道原因。在我看来,有三种方法可以做到这一点,我想知道是否有明显的赢家。 所以,这是一个类用户:
var obj1 = Object.create; console.log(typeof obj1); var obj2 = Object.create(null); console.log(type
I am getting this error after running npm run build yield User.create({^在运行NPM Run Build Year Use
我应该为其他人将从中继承的第一个父对象传递哪个参数,哪个参数更有效 Object.create(Object.prototype) Object.create(Object) Object.creat
我正在尝试使用 JDBC(最新版本)设置 SQL Server 2008 数据库。 我有一个我想一起执行的 setup sql 命令列表: 基本上我做的是: connection.setAutoCom
我正在尝试创建一个 CloudFormation 模板来创建一个 Auto Scaling 组,以便我可以从中启动 2 个实例。 我已经创建了 Auto Scaling 组,但我不知道如何编写用于从
我正在创建我的第一个WordPress网站。我已经在我的网站上安装了Elementor Pro插件。随之而来的一个有利因素是“循环旋转木马”。。。当我把它添加到我的页面时,一切似乎都在工作,但是当我点
create-react-app error 我从终端运行yarn start时收到此错误消息...我尝试了sudo killall node和许多其他过程来清除i-node却没有成功。 我也将我的c
在 CRM 中,当我尝试设置工作流程时,我可以选择与某个实体的创建时间相关的超时。涉及三个字段。 记录创建于 创建于 修改时间 虽然最后一个很明显,但我看不出其他两个之间有任何逻辑上的区别。 最佳答案
我在一次采访中被问到这个问题。我无法回答。 "browserslist": [ ">0.2%", "not dead", "not ie <= 11", "not op_mini all" ] 我可以
这是一个 Rails 新手问题: 当我在模型上调用 create() 时,它会绕过关联的 Controller create 操作吗? 例如,这没有命中我的标签 Controller #create
我不明白这两种特权之间的区别。 我找到了这两种解释,但对我没有帮助。 CREATE TABLE -> Enables a user to create a table owned by that us
我是 SharePoint 工作流的新手。 创建新任务并分配 TaskId 时,我有两个选项: 创建一个新字段来保存 TaskId 创建一个新属性来保存 TaskId。 新属性是一个依赖属性。 我的问
我突然注意到我们的代码库中有一个TDataModuleTestExchange(nil)“构造函数调用”: procedure TDialoogConfigExchange.ButtonTestCli
我有一个具有 TComponent 变量的单元,我在单元初始化时创建此组件,如下所示: var XComp: TComponent; . . . . initialization begin
Composer 是否提供了更新项目创建时使用的包的方法?即,如果我使用以下内容创建一个新的 Laravel 项目 composer create-project --prefer-dist lara
在 Hibernate 中,如果我们将 hbm2ddl.auto 设置为 create/create-drop ,那么它将在启动时删除旧模式并创建新模式。这意味着,它也会删除数据?..我的疑问是,如果
我使用了 create an Automated Build 中的此链接 ( this guide ) . 浏览器错误控制台显示: https://hub.docker.com/v2/reposito
我已经搜索了 msdn 并没有找到答案。我应该知道有什么区别吗? 如果真的没有区别,那么为什么会存在这种冗余? --SQL Server Stored Procedure Syntax CREATE
我有以下内容: var CardViewModel = function (data) { ko.mapping.fromJS(data, {}, this); this.editin
我是一名优秀的程序员,十分优秀!