- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
<html>
<head>
<title>nav page</title>
<link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.4.0/css/font-awesome.min.css">
<style>
body{
font-family:'Open Sans', Helvetica, sans-serif;
color:#000;
margin:0;
background-color:#FFF;
background-attachment:fixed;
}
a {
text-decoration:none;
color: #CDCDCD;
}
a:hover {
text-decoration:none;
color:#a0a0a0;
}
.navbar {
position:fixed;
background-color: #FFF;
text-align:left;
width: 100%;
height: 50px;
top:0;
z-index:999;
}
/* this is the little separating grey line underneath the nav bar */
.navunder {
position:fixed;
background-color: #888;
width:100%;
height:2px;
top:50px;
z-index:999;
-webkit-box-shadow: 0px 9px 4px -5px rgba(138,138,138,1);
-moz-box-shadow: 0px 9px 4px -5px rgba(138,138,138,1);
box-shadow: 0px 9px 4px -5px rgba(138,138,138,1);
}
#title{
float:left;
margin-left:25px;
margin-top:5px;
text-transform:luppercase;
text-align:center;
font-size:14px;
color: #CDCDCD;
letter-spacing:2px;
font-weight:bold;
z-index:9999;
}
#title img {
vertical-align:middle;
height:40px;
border:1px solid #B7B7B7;
padding:0;
}
#navlinks {
float:right;
margin-right: 20px;
margin-top:17px;
fext-transform: uppercase;
font-size:13px;
font-family:
color: #CDCDCD;
text-align:right;
z-index:999;
}
#navlinks a {
padding:10px 10px 10px 0;
}
.logo {
width:10px;
height:10px;
bottom:50px;
left:800px;
border: 1px solid #615c5c;
}
#containers {
width:75%;
text-align:center;
margin-top:120px;
margin-bottom:100px;
margin-left:auto;
margin-right:auto;
}
#box{
float:left;
width:170px;
height:auto;
padding:10px;
border: 0px solid #dbdbdb;
padding:5px;
background: #FFF;
margin:15px;
font-size:9px;
text-align:left;
-webkit-box-shadow: 0px 0px 48px 0px rgba(0,0,0,0.18);
-moz-box-shadow: 0px 0px 48px 0px rgba(0,0,0,0.18);
box-shadow: 0px 0px 48px 0px rgba(0,0,0,0.18);
}
.boxtitle{
background:#fff;
font-size:10px;
padding:10px;
margin:0px;
margin-bottom:1px;
text-align:left;
text-indent:5px;
text-transform:uppercase;
font-weight:bold;
letter-spacing:2px;
border-bottom: 1px solid #dbdbdb;
}
#box a{
width:157px;
font-size:9px;
color:#000;
letter-spacing:1px;
margin-bottom:10px;
padding:10px;
padding-left:3px;
background:#fff;
border-bottom:1px solid #eeeeee;
margin-bottom:2px;
-webkit-transition: all .5s;
text-align:left;
text-transform:lowercase;
display: block;
}
#box a:hover{
color:#65AC88;
-webkit-transition: all .5s;
}
::-webkit-scrollbar { width: 4px; height: 3px;}
::-webkit-scrollbar-button { width: 0px; height: 0px;}
::-webkit-scrollbar-thumb { background: #e1e1e1; border: 12px none #ffffff; border-radius: 38px;}
::-webkit-scrollbar-thumb:hover { background: #ffffff;}
::-webkit-scrollbar-thumb:active { background: #000000;}
::-webkit-scrollbar-track { background: #818181; border: 76px none #ffffff; border-radius: 100px;}
::-webkit-scrollbar-track:hover { background: #666666;}
::-webkit-scrollbar-track:active { background: #b5fde8;}
::-webkit-scrollbar-corner { background: transparent;}
</style>
</head>
<body>
<nav>
<div class="navbar">
<div id="title">TAGS  <img src="{PortraitURL-30}"/>  PAGE</div>
<div id="navlinks">
<a href="/"><i class="fa fa-home"></i></a>
<a href="https://www.tumblr.com/dashboard">dashboard</a>
<a href="https://www.abi-s-themes.tumblr.com">©</a>
</div>
</div>
<div class="navunder"></div>
</nav>
<div id="containers">
<div id="box">
<div class="boxtitle">first box</div>
<a href="#">first link</a>
<a href="#">second link</a>
<a href="#">third link</a>
<a href="#">fourth link</a>
<a href="#">fifth link</a>
</div>
<div id="box">
<div class="boxtitle">second box</div>
<a href="#">first link</a>
<a href="#">second link</a>
</div>
<div id="box">
<div class="boxtitle">third box</div>
<a href="#">first link</a>
<a href="#">second link</a>
<a href="#">third link</a>
<a href="#">fourth link</a>
<a href="#">fifth link</a>
<a href="#">sixth link</a>
<a href="#">seventh link</a>
<a href="#">eighth link</a>
<a href="#">ninth link</a>
<a href="#">tenth link</a>
</div>
<div id="box">
<div class="boxtitle">fourth box</div>
<a href="#">first link</a>
<a href="#">second link</a>
<a href="#">third link</a>
<a href="#">fourth link</a>
<a href="#">fifth link</a>
<a href="#">sixth link</a>
</div>
<div id="box">
<div class="boxtitle">fifth box</div>
<a href="#">first link</a>
<a href="#">second link</a>
<a href="#">third link</a>
<a href="#">fourth link</a>
<a href="#">fifth link</a>
<a href="#">sixth link</a>
<a href="#">seventh link</a>
<a href="#">eighth link</a>
<a href="#">ninth link</a>
<a href="#">tenth link</a>
</div>
</div>
</body>
</html>
我在学校一直在学习 HTML 和 CSS,但我对 javascript 和 jQuery 以及我想做的事情仍然很不安全,但不知道使用哪个代码基本上只是自动重新排列框。
我想要的是,无论我向第一个框添加多少标签,第五个框都会在第一个框的下方重新排列,顶部边距为 10px。
谢谢大家!
最佳答案
您要求使用 javascript,因此我将介绍一种(或几种)方法,这可以用 javascript 完成。
正如评论中提到的,这也可以使用直接的 css,使用 FlexBox .检查一下,但也要注意浏览器的兼容性。
使用 javascript (jQuery),您可能想要查看所有框的大小,找到“最大尺寸”(最高的那个),然后将所有框设置为与最高的框相同的高度。
此外,由于您是一名学生,我会就您标记中的一些内容提供一些建议/指导:
首先,一个 id
对整个页面来说应该是唯一的。在您的代码中,您有许多元素的 id 为 box:<div id="box">
- 这些应该可以更改为具有类 - 偶数框:<div class="box">
.
现在到javascript:
// This is a shorthand for "document ready", and ensures you can use the `$` within the code contained inside the document ready
jQuery(function($) {
// Set up our max height variable
var maxHeight = 0;
// Iterate over each box. NOTE this assumes you've changed to class="box"
$('.box').each(function() {
// Use a small formula to determine if this element's height is larger, and if so, store that value in the variable
maxHeight = Math.max($(this).height(), maxHeight);
});
// Now, assign that height to ALL of the boxes.
$('.box').css('height', maxHeight);
});
现在,如果您想将其提升到一个新的水平,您可以将其设为一个函数,并且您可以在调整页面大小时随时调用该函数,以确保它们所有保持相同的高度:
jQuery(function($) {
function setHeights() {
// Set up our max height variable
var maxHeight = 0;
// Iterate over each box. NOTE this assumes you've changed to class="box"
$('.box').each(function() {
// Use a small formula to determine if this element's height is larger, and if so, store that value in the variable
maxHeight = Math.max($(this).height(), maxHeight);
});
// Now, assign that height to ALL of the boxes.
$('.box').css('height', maxHeight);
}
// watch the resize event, and call the setHeights function
$(window).on('resize', function() {
setHeights();
});
// Cause the heights to be adjusted on initial load
setHeights();
});
一旦您完全了解该代码,您就可以查看更流畅/更奇特的方法来获得最大高度,例如此方法:https://stackoverflow.com/a/6061029/870729
关于javascript - 我必须添加什么样的脚本才能使框自动对齐?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34548480/
我有 powershell 脚本。通过调度程序,我运行 bat 文件,该文件运行 PS1 文件。 BAT文件 Powershell.exe -executionpolicy remotesigned
什么更快? 或者 $.getScript('../js/SOME.js', function (){ ... // with $.ajaxSetup({ cache: true });
需要bash脚本来显示文件 #!/bin/bash my_ls() { # save current directory then cd to "$1" pushd "$1" >/dev/nu
我有一个输入 csv 文件,实际上我需要在输入文件中选择第 2 列和第 3 列值,并且需要转换两个值的时区(从 PT 到 CT),转换后我需要替换转换后的时区值到文件。 注意: 所有输入日期值都在太平
我正在使用/etc/init.d/httpd 作为 init.d 脚本的模板。我了解文件中发生的所有内容,但以下行除外: LANG=$HTTPD_LANG daemon --pidfile=${pid
我有以下选择: python runscript.py -O start -a "-a "\"-o \\\"-f/dev/sda1 -b256k -Q8\\\" -l test -p maim\""
我对 shell 脚本完全陌生,但我需要编写一个 shell 脚本来检查文件是否存在,然后移动到另一个位置 这是我写的: 一旦设备崩溃,我就会在/storage/sdcard1/1 中收集日志 #!/
我正在使用 bash 脚本从文本文件中读取数据。 数据: 04:31 Alex M.O.R.P.H. & Natalie Gioia - My Heaven http://goo.gl/rMOa2q
这是单击按钮时运行的 javascript 的结尾 xmlObj.open ('GET', /ajax.php, true); xmlObj.send (''); } 所以这会执行根目录中的php脚本
关闭。这个问题需要debugging details .它目前不接受答案。 编辑问题以包含 desired behavior, a specific problem or error, and th
我需要将文件转换为可读流以通过 api 上传,有一个使用 fs.createReadStream 的 Node js 示例。任何人都可以告诉我上述声明的 python 等价物是什么? 例子 const
我有一个 shell 脚本 cron,它从同一目录调用 python 脚本,但是当这个 cron 执行时,我没有从我的 python 脚本中获得预期的输出,当我手动执行它时,我的 python 脚本的
如何使 XMLHttpRequest (ajax) 调用的 php 脚本安全。 我的意思是,不让 PHP 文件通过直接 url 运行,只能通过脚本从我的页面调用(我不想向未登录的用户显示数据库结果,并
我正在尝试添加以下内容 我正在使用经典的 asp。但我不断收到的错误是“一个脚本 block 不能放在另一个脚本 block 内。”我尝试了此处的 document.write 技术:Javasc
如何从另一个 PHP 脚本(如批处理文件)中运行多个 PHP 脚本?如果我了解 include 在做什么,我认为 include 不会起作用;因为我正在运行的每个文件都会重新声明一些相同的函数等。我想
我想创建具有动态内容的网页。我有一个 HTML 页面,我想从中调用一个 lua 脚本 如何调用 lua 脚本? ? ? 从中检索数据?我可以做类似的事情吗: int xx = 0; xx
我删除了我的第一个问题,并重新编写了更多细节和附加 jSfiddle domos。 我有一个脚本,它运行查询并返回数据,然后填充表。表中的行自动循环滚动。所有这些工作正常,并通过使用以下代码完成。然而
我尝试使用 amp 脚本,但收到此错误: “[amp-script] 脚本哈希未找到。amp-script[script="hello-world"].js 必须在元[name="amp-script
我有一个读取输入的 Shell 脚本 #!/bin/bash echo "Type the year that you want to check (4 digits), followed by [E
我正在从 nodejs 调用 Lua 脚本。我想传递一个数组作为参数。我在 Lua 中解析该数组时遇到问题。 下面是一个例子: var script = 'local actorlist = ARGV
我是一名优秀的程序员,十分优秀!