- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
大家好,显然我在填充方面有问题,我一直在尝试填充“欢迎,Motalvinl”下方的顶部黑色大箭头,而不是包含“文件,...”的表格,你们有没有这样做的方法?我实际上目前在表格“文件,...”的填充下,我希望只是在“欢迎,Motalvinl”下方填充。当然,我不希望我的表格位于底部箭头下方,我希望它仍位于网页中间,我只想更改“欢迎,Motalvinl”下大黑箭头的填充。谢谢你们的帮助!非常感谢!
这些是我的代码
<?php
include_once 'db.php'; //Establishing connection with our database
include_once 'https.php';
include_once 'secure_session_start.php';
secure_session_start(); //Start session
?>
<!DOCTYPE html>
<html>
<head>
<!-- Popup box to confirm logout -->
<script>
function Confirmlogout()
{
var x = confirm("Are you sure you want log out?");
if (x)
return true;
else
return false;
}
</script>
<!-- Webpage information -->
<title>Firewall Rule Review System</title>
<meta name="author" content="your name" />
<meta name="description" content="" />
<link rel="stylesheet" href="indexstyle.css" type="text/css" />
<style>
<!-- Table format -->
div.container{
width:98%;
margin:1%;
overflow: auto;
}
table, th, td {
border: 1px solid white;
border-collapse: collapse;
margin:auto;
z-index: 100;
width:600px;
}
th, td {
padding: 5px;
text-align: center;
}
table#t01 tr:nth-child(even) {
background-color: #eee;
text-align:center;
margin-left:auto;
margin-right:auto;
width:100px;
}
table#t01 tr:nth-child(odd) {
background-color:#fff;
}
table#t01 th {
background-color: black;
color: white;
}
.footer {
position: absolute;
right: 0;
bottom: 0;
left: 0;
padding: 0rem;
background-color: #efefef;
text-align: center;
}
</style>
</head>
<body>
<!-- Webpage Content-->
<div id="page">
<div id="logo">
<h1><a href="#"><b>Firewall Rule Review System</b></a></h1>
<h2><b><?php echo 'Welcome, '.$_SESSION['usern'];?></b></h2>
</div>
<div id="nav">
<ul>
<li class="red"><a href="#/about.html"><b>About</b></a></li>
<li class="orange"><a href="#/contact.html"><b>Contact</b></a></li>
<li class="blue"><a href="logout.php" onclick="return Confirmlogout();"><b>Logout</b></a></li>
</ul>
</div>
<html>
<div class ="container">
<table id="t01">
<tr>
<th>File</th>
<th>Size</th>
<th>Upload-DateTime</th>
<th>Action</th>
</tr>
<tr>
</tr>
</table>
</div>
</html>
<div class="point-top"></div>
<div class="triangles-menu">
<a href="HOMEPAGE LINK HERE">Home</a>
<a href="uploadfilepg.php" name="uploadfile"> Upload File</a>
<a href="filerecords.php">File Records</a>
<a href="LINK HERE">Change Password</a>
</div>
<div class="point-bottom"></div> </div>
<!-- End Page Content -->
<div class="footer">
<p>
Testing
</p>
</div>
</body>
</html>
我希望它看起来像这样 Perfect Solution
这是我的 Css!
/*
* multi-line comment
*/
p{ line-height: 1em; }
h1, h2, h3, h4{
color: black;
font-weight: normal;
line-height: 1.1em;
margin: 0 0 .5em 0;
}
h1{ font-size: 1.7em; }
h2{ font-size: 1.5em; }
a{
color: black;
text-decoration: blink;
}
a:hover,
a:active{ text-decoration: blink; }
body{
font-family: arial; font-size: 80%; line-height: 1.2em; width: 100%; margin: 0; background: #eee;
font-weight: normal;
}
/* you can but your code all in one line like above */
#page{ margin: 20px; }
/* or on different lines like below */
#logo{
width: 35%;
margin-top: 5px;
font-family: arial;
display: inline-block;
}
/* but try and be as consist possible */
#nav{
width: 60%;
display: inline-block;
text-align: right;
float: right;
}
#nav ul{}
#nav ul li{
display: inline-block;
height: 62px;
}
#nav ul li a{
padding: 20px;
background: red;
color: #000000;
}
#nav ul li a:hover{
background-color: #ff8000;
box-shadow: 0px 1px 1px #666;
}
#nav ul li a:active{ background-color: #ff8f00; }
#nav ul li.red a{
background-color: red;
}
#nav ul li.orange a{
background-color: orange;
}
#nav ul li.blue a{
background-color: #0080ff;
}
#content{
margin: 30px 0;
background: white;
padding: 20px;
clear: both;
}
#footer{
border-bottom: 1px #ccc solid;
margin-bottom: 10px;
}
#footer p{
text-align: right;
text-transform: uppercase;
font-size: 80%;
color: grey;
}
/* multiple styles seperated by a , */
#content,
ul li a{ box-shadow: 0px 1px 1px #999; }
/* User Login Page */
.point-top,
.point-bottom {
width: 0;
height: 0;
border-right: 75px solid transparent;
border-left: 75px solid transparent;
}
.point-top {
border-bottom: 50px solid black;
border-top: 0;
padding-top: 2em;
}
.point-bottom {
border-top: 50px solid black;
border-bottom: 0;
}
.triangles-menu {
background-color: #d5d2d5;
width: 150px;
padding-bottom: 1em;
}
.triangles-menu a {
display: block;
font-family: 'Alegreya Sans', sans-serif;
font-weight: 100;
font-size: 1.5em;
color: black;
text-align: center;
text-decoration: none;
margin-bottom: 2em;
}
.triangles-menu a:first-of-type {
padding-top: 1em;
text-decoration: underline;
}
.triangles-menu a:hover {
font-weight: bold;
}
.testingPhase {
margin-left: auto;
margin-right: auto;
width: 6em;
}
/* Table */
最佳答案
我在这里编辑并提供了您的 HTML 和 CSS 代码。
看看那个,看看它是不是你想要的?
div.container {
width: 98%;
margin: 1%;
overflow: auto;
}
table,
th,
td {
border: 1px solid white;
border-collapse: collapse;
margin: auto;
z-index: 100;
width: 600px;
}
th,
td {
padding: 5px;
text-align: center;
}
table#t01 tr:nth-child(even) {
background-color: #eee;
text-align: center;
margin-left: auto;
margin-right: auto;
width: 100px;
}
table#t01 tr:nth-child(odd) {
background-color: #fff;
}
table#t01 th {
background-color: black;
color: white;
}
.footer {
position: relative;
right: 0;
bottom: 0;
left: 0;
padding: 0rem;
background-color: #efefef;
text-align: center;
}
p {
line-height: 1em;
}
h1,
h2,
h3,
h4 {
color: black;
font-weight: normal;
line-height: 1.1em;
margin: 0 0 .5em 0;
}
h1 {
font-size: 1.7em;
}
h2 {
font-size: 1.5em;
}
a {
color: black;
text-decoration: blink;
}
a:hover,
a:active {
text-decoration: blink;
}
body {
font-family: arial;
font-size: 80%;
line-height: 1.2em;
width: 100%;
margin: 0;
background: #eee;
font-weight: normal;
}
/* you can but your code all in one line like above */
#page {
margin: 20px;
}
/* or on different lines like below */
#logo {
width: 35%;
margin-top: 5px;
font-family: arial;
display: inline-block;
}
/* but try and be as consist possible */
#nav {
width: 60%;
display: inline-block;
text-align: right;
float: right;
}
#nav ul {} #nav ul li {
display: inline-block;
height: 62px;
}
#nav ul li a {
padding: 20px;
background: red;
color: #000000;
}
#nav ul li a:hover {
background-color: #ff8000;
box-shadow: 0px 1px 1px #666;
}
#nav ul li a:active {
background-color: #ff8f00;
}
#nav ul li.red a {
background-color: red;
}
#nav ul li.orange a {
background-color: orange;
}
#nav ul li.blue a {
background-color: #0080ff;
}
#content {
margin: 30px 0;
background: white;
padding: 20px;
clear: both;
}
#footer {
border-bottom: 1px #ccc solid;
margin-bottom: 10px;
}
#footer p {
text-align: right;
text-transform: uppercase;
font-size: 80%;
color: grey;
}
/* multiple styles seperated by a , */
#content,
ul li a {
box-shadow: 0px 1px 1px #999;
}
/* User Login Page */
.point-top,
.point-bottom {
width: 0;
height: 0;
border-right: 75px solid transparent;
border-left: 75px solid transparent;
}
.point-top {
border-bottom: 50px solid black;
border-top: 0;
padding-top: 2em;
}
.point-bottom {
border-top: 50px solid black;
border-bottom: 0;
}
.triangles-menu {
background-color: #d5d2d5;
width: 150px;
padding-bottom: 1em;
}
.triangles-menu a {
display: block;
font-family: 'Alegreya Sans', sans-serif;
font-weight: 100;
font-size: 1.5em;
color: black;
text-align: center;
text-decoration: none;
margin-bottom: 2em;
}
.triangles-menu a:first-of-type {
padding-top: 1em;
text-decoration: underline;
}
.triangles-menu a:hover {
font-weight: bold;
}
.testingPhase {
margin-left: auto;
margin-right: auto;
width: 6em;
}
<div id="page">
<div id="logo">
<h1><a href="#"><b>Firewall Rule Review System</b></a></h1>
<h2><b>Welcome ...</b></h2>
</div>
<div id="nav">
<ul>
<li class="red"><a href="#"><b>About</b></a>
</li>
<li class="orange"><a href="#"><b>Contact</b></a>
</li>
<li class="blue"><a href="#"><b>Logout</b></a>
</li>
</ul>
</div>
<div class="point-top"></div>
<div class="triangles-menu">
<a href="#">Home</a>
<a href="#" name="uploadfile"> Upload File</a>
<a href="#">File Records</a>
<a href="#">Change Password</a>
</div>
<div class="point-bottom"></div>
<div class="container">
<table id="t01">
<tr>
<th>File</th>
<th>Size</th>
<th>Upload-DateTime</th>
<th>Action</th>
</tr>
<tr>
</tr>
</table>
</div>
</div>
<!-- End Page Content -->
<div class="footer">
<p>
Testing
</p>
</div>
关于php - 我如何专门为这个 id 和另一个 id 使用填充?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41311518/
出现在 python 2.7.8 中。 3.4.1 不会发生这种情况。 示例: >>> id(id) 140117478913736 >>> id(id) 140117478913736 >>> id
好吧,我对动态创建的控件的 ID 很困惑。 Public Class TestClass Inherits Panel Implements INamingContainer
我收到下面的错误,说有堆栈溢出。发生这种情况是因为带有 IN (id, id, id...id) 的 SQL 语句有大量参数。有没有什么办法解决这一问题?这是在我使用 Eclipse 的本地环境中发生
为什么 CPython(不知道其他 Python 实现)有以下行为? tuple1 = () tuple2 = ()
为什么 CPython(对其他 Python 实现一无所知)有以下行为? tuple1 = () tuple2 = ()
非常简单的问题:当我有一个持久对象时,它通常有一个名为 ID 的属性(对于抽象类)。 那么..命名约定是ID还是Id? 例如。 public int ID { get; set; } 或 public
知道为什么我会收到此错误,我已经尝试了所有命名约定(小写/大写) 我正在使用 Vaadin,这是我的代码片段: public class Usercontainer extends BeanI
为什么 CPython(不知道其他 Python 实现)有以下行为? tuple1 = () tuple2 = ()
我需要改变表的所有主键 UPDATE TODO SET id = id + 1 但我做不到(Demo 来自 Ahmad Al-Mutawa 的回答)描述了原因。主键不能这样改。 我也不能根据这是 sq
我正在尝试列出与用户相关的讨论列表。 想象一下,如果你愿意的话: posts -------------------------------------------------------------
我有一个表,其中包含一些具有自己的 ID 和共享 SKU key 的文章。我尝试使用左连接进行查询,并使用组结果获取从查询返回的所有 id。 我的数据结构是这样的: id - name -
在下表People中: id name 1 James 2 Yun 3 Ethan 如果我想找到最大 ID,我可以运行此查询 select max(id) id from People; 结果是
我正在产品页面上创建评论模块,其中显示垃圾评论选项,并显示 onclick 显示和隐藏弹出窗口。现在它在单个评论中工作正常但是当评论是两个时它同时打开两个因为类是相同的。现在这就是为什么我想要获取父
根据 REST 哲学,PUT操作应该(取自维基百科): PUT http://example.com/resources/142 Update the address member of the co
我想知道如何在使用 PHP 或 JavaScript 进行身份验证后从 Google Analytics 获取 Property Id、View Id 和 Account Id?因为我希望能够将它们存
我想使用所选按钮的 ID 进行删除。但我不知道如何从中获取/获取 id。我尝试了 this.id 但不起作用。 这是我创建按钮的地方: var deleteEmployer= document.cre
我有一个具有以下结构的表“表” ID LinkedWith 12 13 13 12 14 13 15 14 16
请不要在未阅读问题的情况下将问题标记为重复。我确实发布了一个类似的问题,但 STACKOVERFLOW 社区成员要求我单独重新发布修改后的问题,因为考虑到一个小而微妙的修改,解决方案要复杂得多。 假设
在 Android Studio 中,我创建了一个 Person.java 类。我使用Generate 创建了getter 和setter 以及构造函数。 这是我的 Person.java 类: pu
如何在 jQuery 中制作这样的东西: //这是显示的主体 ID //当我悬停 #hover-id 时,我希望 #principal-id 消失并更改 。但是当我将光标放在 #this-id 上时
我是一名优秀的程序员,十分优秀!