gpt4 book ai didi

html - 如何使用 twitter bootstrap 减少 CSS 中的 div 大小?

转载 作者:行者123 更新时间:2023-11-28 00:00:36 25 4
gpt4 key购买 nike

我之前问过同样的问题,但我对过去的代码进行了更改。我仍然有调整 div 大小的问题。

我正在尝试设计一个登录页面,截图如下。

http://prntscr.com/2pksiq (最新)

我希望输出为 http://prntscr.com/2pga73 .我正在尝试减小标签的大小

<div id="logo" class="logo col-xs-2"></div>

<div id="title" class="page-title green-bg col-xs-8">Local Adventures</div>

我是 CSS 新手,请建议我解决此问题的方法。我在我的元素中使用 twitter bootstrap。

我有以下 HTML:

<head>

<link href="C:/L.A project/local-adventure/web/src/main/webapp/resources/components/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<script type="text/javascript" src="C:/L.A project/local-adventure/web/src/main/webapp/resources/components/bootstrap/js/bootstrap.min.js"></script>
<link href="C:/L.A project/local-adventure/web/src/main/webapp/resources/localadventures/css/createaccount.css" rel="stylesheet">
<link href="C:/L.A project/local-adventure/web/src/main/webapp/resources/localadventures/css/styles.css"rel='stylesheet' type='text/css' href='styles.css' />
<link href="C:/L.A project/local-adventure/web/src/main/webapp/resources/localadventures/css/main.css" rel="stylesheet">

<meta charset="utf-8">

</head>

<title>Local-Adventures</title>

<div class="visible-xs stop-detail">
<div id="login-form">
<div class="logo col-xs-4"></div>
<div class="page-title green-bg col-xs-8">Local Adventures</div>

<a href="#">Create an Account</a>
<a href="#">Sign In</a>
<input type="email" required value="Email Address" onBlur="if(this.value=='')this.value='Email Address'" onFocus="if(this.value=='Email Address')this.value='' ">
<input type="email" required value="Password" onBlur="if(this.value=='')this.value='Password'" onFocus="if(this.value=='Password')this.value='' ">
<input type="email" required value="Confirm password" onBlur="if(this.value=='')this.value='Confirm password'" onFocus="if(this.value=='Confirm password')this.value='' ">

<br><br>
<span class='btn btn-lg btn-success btn-block'>Create An Account</span>
<span class='btn btn-lg btn-primary btn-block'>Facebook Login</span>

</div> <!-- end login-form -->



</div>

我的 CSS 如下:

   @charset "utf-8";
/* CSS Document */

/* ---------- GENERAL ---------- */
/*
body {
background: #FFFFFF;
color: #999;
font: 100%/1.5em sans-serif;
margin: 0;
}
*/


a {
color: #2a2a2a;
text-decoration: none;
margin:1px 33;
}

a:hover { color: #88c425; }

fieldset {
border: none;
margin: 0;
}
.btn-success {
border-radius:0px;
background-color: #88c425
}

.btn-success:hover {
background-color: #88c425
}

.btn-primary {
border-radius:0px;
}

input {
border: none;
font-family: inherit;
font-size: inherit;
margin: 0;
-webkit-appearance: none;
}

input:focus {
outline: none;
}

input[type="submit"] { cursor: pointer; }

.clearfix { *zoom: 1; }
.clearfix:before, .clearfix:after {
content: "";
display: table;
}
.clearfix:after { clear: both; }

/* ---------- LOGIN-FORM ---------- */

#login-form {
margin: 50px auto;
width: 300px;
}

#login-form h3 {
background-color: #79a002;
border-radius: 5px 5px 0 0;
color: #fff;
font-size: 14px;
padding: 20px;
text-align: center;
text-transform: uppercase;
}

#login-form fieldset {
background: #fff;
border-radius: 0 0 -1px -1px;
padding: 0px;

}

#login-form fieldset:before {
background-color: #fff;
content: "";
height: 8px;
left: 50%;
margin: -4px 0 0 -4px;
position: absolute;
top: 0;
-webkit-transform: rotate(45deg);
-moz-transform: rotate(45deg);
-ms-transform: rotate(45deg);
-o-transform: rotate(45deg);
transform: rotate(45deg);
width: 8px;
}

#login-form input {
font-size: 14px;
}

#login-form input[type="email"], #login-form input[type="password"] {
border:none; /* clear previous borders */
border-bottom: 1px solid #88c425; /* add bottom border */
padding: 12px 10px;
width: 300px;
}

#login-form input[type="email"] {
border-radius: 3px 3px 0 0;
}

#login-form input[type="password"] {
border-top: none;
border-radius: 0px 0px 3px 3px;
}

#login-form input[type="submit"] {
background: #1dabb8;
border-radius: 3px;
color: #fff;
float: right;
font-weight: bold;
margin-top: 20px;
padding: 12px 20px;
}

最佳答案

您可以使用开发人员工具来查看影响每个元素的因素。例如,在 Firefox 中,如果您右键单击页面上的任何内容并按下检查元素,它会向您显示应用了哪些 css 属性、它们在什么标签下,甚至它们在什么 css 文档中以及它们所在的行!从那里您可以进入您的 CSS 并更改它,甚至可以在检查元素面板中更改实时页面本身的内容,让您自己预览您想要做什么。您应该学习使用的另一个好工具是 firebug,尝试下载它并练习使用它。

关于html - 如何使用 twitter bootstrap 减少 CSS 中的 div 大小?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21565280/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com