admin管理员组文章数量:1395225
I have a menubar that has some items, but I want to add a signup/login item that has the same style, but it is aligned on the right and doesn't effect the other items in the center. Basically, I have an item called "Login/Sign Up" and I would like to have it not effect the other items whatsoever and have it's own independent class while still being a part of the menubar.... Any help is greatly appreciated. Thanks!
/*Some Fonts Here:*/
@font-face {
font-family: Rusty;
src: url('BrushScriptStd.otf');
}
* {
font-family: Rusty;
font-weight: Lighter;
}
.background {
background-image: url(0.jpg);
background-attachment: fixed;
background-size: 100% auto;
background-color: f7f7f7;
background-repeat: no-repeat;
background-position: center top;
}
/*Start of menu code*/
.menubar {
height: 2.8vw;
opacity: 0.85;
background-color: #CCCCCC;
}
.clearfix:after {
display: block;
clear: both;
}
.menu-wrap {
width: 50%;
box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
background: #3e3436;
}
.menu {
width: 100%;
margin: 0px auto;
text-align: center;
}
.menu li {
margin: 0px;
list-style: none;
font-family: 'Ek Mukta';
}
.menu a {
transition: all linear 0.15s;
color: #919191;
}
.menu li:hover > a,
.menu .current-item > a {
text-decoration: none;
color: rgba(189, 34, 34, 1);
}
.menu .arrow {
font-size: 0.95vw;
line-height: 0%;
}
.menu > ul > li {
float: middle;
display: inline-block;
position: relative;
font-size: 1.2vw;
}
.menu > ul > li > a {
padding: 0.7vw 5vh;
display: inline-block;
text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.4);
}
.menu > ul > li:hover > a,
.menu > ul > .current-item > a {
background: #2e2728;
}
.menu li:hover .sub-menu {
opacity: 1;
}
.sub-menu {
z-index: 99999;
width: 100%;
padding: 0px 0px;
position: absolute;
top: 100%;
left: 0px;
opacity: 0;
transition: opacity linear 0.15s;
box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.2);
background: #2e2728;
z-index: -5;
}
.sub-menu li {
display: block;
font-size: 1.2vw;
}
.login {
width: 100%;
margin: 0px relative;
text-align: right;
}
.sub-menu li a {
padding: 10px 10px;
display: block;
}
.sub-menu li a:hover,
.sub-menu .current-item a {
background: #3e3436;
z-index: 99;
postition: absolute;
}
/*End of menu code*/
.Rusty {
font-family: "Rusty";
color: rgba(189, 34, 34, 1);
line-height: 1.2;
text-align: center;
text-shadow: 0px 13px 21px rgba(0, 0, 0, 0.35);
}
.content {
margin: auto;
width: 80%;
background-color: #CCCCCC;
padding: 10px;
height: 100%;
}
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" href=".3.5/css/bootstrap.min.css">
<script src=".11.3/jquery.min.js"></script>
<script src=".3.5/js/bootstrap.min.js"></script>
<link rel="stylesheet" href=".css" name="www-subscribe-widget">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<script src="script.js"></script>
<link rel="shortcut icon" href="favicon.ico">
<title>RG - Home</title>
</head>
<body class="background">
<!--Begginning of menubar-->
<div class="menubar">
<nav class="menu">
<ul class="clearfix">
<li><a href="aboutme.html">About Me <span class="arrow">▼</span></a>
<!--Here is the dropdown menu-->
<ul class="sub-menu">
<li><a href="#">Gaming</a>
</li>
<li><a href="#">Programming</a>
</li>
<li><a href="#">YouTube</a>
</li>
<li><a href="#">Other</a>
</li>
</ul>
<!----------------------->
</li>
<li><a href="schedule.html">Schedule</a>
</li>
<li class="current-item">
<a href="#">
<p class="rusty">RedstoneGaming</p>
</a>
</li>
<li><a href="equipment.html">Equipment</a>
</li>
<li><a href="contact.html">Contact Me</a>
</li>
<li><a href="login.html">Login/Sign Up</a>
</li>
</ul>
</nav>
</div>
<!--End of menubar-->
<div class="content">
<div style="height: 7vh;" align="center">
<h1 style="font-size: 3vw;" class="rusty">Colortone | Am I colorblind?! | W/Voiceless </h1>
<iframe style="height:300%; width:auto;" src=" align=" center "></iframe></div>
</div>
</body>
</html>
I have a menubar that has some items, but I want to add a signup/login item that has the same style, but it is aligned on the right and doesn't effect the other items in the center. Basically, I have an item called "Login/Sign Up" and I would like to have it not effect the other items whatsoever and have it's own independent class while still being a part of the menubar.... Any help is greatly appreciated. Thanks!
/*Some Fonts Here:*/
@font-face {
font-family: Rusty;
src: url('BrushScriptStd.otf');
}
* {
font-family: Rusty;
font-weight: Lighter;
}
.background {
background-image: url(0.jpg);
background-attachment: fixed;
background-size: 100% auto;
background-color: f7f7f7;
background-repeat: no-repeat;
background-position: center top;
}
/*Start of menu code*/
.menubar {
height: 2.8vw;
opacity: 0.85;
background-color: #CCCCCC;
}
.clearfix:after {
display: block;
clear: both;
}
.menu-wrap {
width: 50%;
box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
background: #3e3436;
}
.menu {
width: 100%;
margin: 0px auto;
text-align: center;
}
.menu li {
margin: 0px;
list-style: none;
font-family: 'Ek Mukta';
}
.menu a {
transition: all linear 0.15s;
color: #919191;
}
.menu li:hover > a,
.menu .current-item > a {
text-decoration: none;
color: rgba(189, 34, 34, 1);
}
.menu .arrow {
font-size: 0.95vw;
line-height: 0%;
}
.menu > ul > li {
float: middle;
display: inline-block;
position: relative;
font-size: 1.2vw;
}
.menu > ul > li > a {
padding: 0.7vw 5vh;
display: inline-block;
text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.4);
}
.menu > ul > li:hover > a,
.menu > ul > .current-item > a {
background: #2e2728;
}
.menu li:hover .sub-menu {
opacity: 1;
}
.sub-menu {
z-index: 99999;
width: 100%;
padding: 0px 0px;
position: absolute;
top: 100%;
left: 0px;
opacity: 0;
transition: opacity linear 0.15s;
box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.2);
background: #2e2728;
z-index: -5;
}
.sub-menu li {
display: block;
font-size: 1.2vw;
}
.login {
width: 100%;
margin: 0px relative;
text-align: right;
}
.sub-menu li a {
padding: 10px 10px;
display: block;
}
.sub-menu li a:hover,
.sub-menu .current-item a {
background: #3e3436;
z-index: 99;
postition: absolute;
}
/*End of menu code*/
.Rusty {
font-family: "Rusty";
color: rgba(189, 34, 34, 1);
line-height: 1.2;
text-align: center;
text-shadow: 0px 13px 21px rgba(0, 0, 0, 0.35);
}
.content {
margin: auto;
width: 80%;
background-color: #CCCCCC;
padding: 10px;
height: 100%;
}
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn./bootstrap/3.3.5/css/bootstrap.min.css">
<script src="https://ajax.googleapis./ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn./bootstrap/3.3.5/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="http://s.ytimg./yts/cssbin/www-subscribe-widget-webp-vflj9zwo0.css" name="www-subscribe-widget">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<script src="script.js"></script>
<link rel="shortcut icon" href="favicon.ico">
<title>RG - Home</title>
</head>
<body class="background">
<!--Begginning of menubar-->
<div class="menubar">
<nav class="menu">
<ul class="clearfix">
<li><a href="aboutme.html">About Me <span class="arrow">▼</span></a>
<!--Here is the dropdown menu-->
<ul class="sub-menu">
<li><a href="#">Gaming</a>
</li>
<li><a href="#">Programming</a>
</li>
<li><a href="#">YouTube</a>
</li>
<li><a href="#">Other</a>
</li>
</ul>
<!----------------------->
</li>
<li><a href="schedule.html">Schedule</a>
</li>
<li class="current-item">
<a href="#">
<p class="rusty">RedstoneGaming</p>
</a>
</li>
<li><a href="equipment.html">Equipment</a>
</li>
<li><a href="contact.html">Contact Me</a>
</li>
<li><a href="login.html">Login/Sign Up</a>
</li>
</ul>
</nav>
</div>
<!--End of menubar-->
<div class="content">
<div style="height: 7vh;" align="center">
<h1 style="font-size: 3vw;" class="rusty">Colortone | Am I colorblind?! | W/Voiceless </h1>
<iframe style="height:300%; width:auto;" src="https://www.youtube./embed/-egJP-2ShRk?controls=2 align=" center "></iframe></div>
</div>
</body>
</html>
Share
Improve this question
asked Dec 12, 2015 at 19:02
Nicholas JohnsonNicholas Johnson
1,0222 gold badges13 silver badges36 bronze badges
4 Answers
Reset to default 3Just add a class
to the login element and apply some CSS to it.
HTML:
<li class="login"><a href="login.html">Login/Sign Up</a></li>
CSS:
.menu > ul > .login {
position: absolute;
top: 0;
right: 0;
}
what about something like this?
<li id="login-link"> </li>
.menu ul #login-link{
color: white; /* or whatever */
}
To align it right, use float:right
.
<li class="login"><a href="login.html">Login/Sign Up</a>
.menu ul .login { float:right; }
I'm not sure but what I think you're looking for is some of these options:
<li class="alignright-abs"><a href="login.html">Login/Sign Up</a>
<li class="alignright-fixed"><a href="login.html">Login/Sign Up</a>
css
li.alignright-abs {
position:absolute;
top:0;
right:0;
}
li.alignright-fixed {
position:fixed;
top:0;
right:0;
}
本文标签: javascriptHow to create new ltligt not affected by SOME css stylesStack Overflow
版权声明:本文标题:javascript - How to create new <li> not affected by SOME css styles - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1744657315a2618044.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论