1、HTML+CSS如何實現左邊為導航欄,右邊為連接頁面?
通常是iframe實現了,也有用ajax非同步的。各有長處
2、能看懂CSS,單獨用CSS寫導航 側邊欄 主體 都會, 可是要我完整用CSS寫 一個完整的網頁 就是不會。
無非是大框套小框,要不回頭發個模板給你,一看源代碼就知道該怎麼弄了
3、CSS製作網頁,用圖片做的導航欄,打開網頁後導航欄為什麼帶邊框?邊框怎麼消除?
<img src="XXX.jpg" border=0>
或者用樣式控制
<style>
img{border:0;}
</style>
4、HTML使用DIV+CSS如何實現左邊導航,右邊顯示內容,點擊那個導航顯示那個內容
1、新建html文檔。
2、書寫hmtl代碼。
<ul>
<li><A class="hover" href="#">前端交流</A></li>
<li><A href="#">交互設計</A></li>
<li><A href="#">視覺設計</A></li>
<li><A href="#">用戶研究</A></li>
<li><A href="#">設計茶吧</A></li>
<li><A href="#">前端交流</A></li>
<li><A href="#">團隊生活</A></li>
<div id="lanPos"></div>
</ul>
3、書寫css代碼。
<style>
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video { margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; font-weight: normal; }
body { line-height: 1; }
:focus { outline: 1; }
article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary { display: block; }
nav ul, ul, li { list-style: none; }
blockquote, q { quotes: none; }
blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none; }
a { margin: 0; padding: 0; border: 0; font-size: 100%; vertical-align: baseline; background: transparent; text-decoration: none; }
a:hover { text-decoration: underline; }
ins { background-color: #ff9; color: #000; text-decoration: none; }
mark { background-color: #ff9; color: #000; font-style: italic; font-weight: bold; }
del { text-decoration: line-through; }
abbr[title], dfn[title] { border-bottom: 1px dotted #000; cursor: help; }
table { border-collapse: collapse; border-spacing: 0; }
hr { display: block; height: 1px; border: 0; border-top: 1px solid #cccccc; margin: 1em 0; padding: 0; }
input, select { vertical-align: middle; }
.fl { float: left; display: inline-block; }
.fr { float: right; display: inline-block; }
.clearfix:after { visibility: hidden; display: block; font-size: 0; content: " "; clear: both; height: 0; }
.clearfix { display: inline-table; }
* html .clearfix { height: 1%; }
.clearfix { display: block; }
html { font-size: 62.5%; /* 10÷16=62.5% */ }
body { font-size: 12px; font-size: 1.2rem; background: #F8F8F8; font-family: "宋體"; }
ul { width: 180px; margin: 0 auto; background: #fff; position: relative; z-index: 0; padding: 60px 20px 70px; }
ul li { height: 40px; line-height: 40px; text-align: center; border-bottom: 1px solid #F8F8F8; }
ul li a { color: #666; display: block; }
ul li a:hover { color: #FF5F3E; text-decoration: none; }
ul li a.hover { color: #FF5F3E; }
#lanPos { width: 225px; height: 40px; line-height: 40px; background: #F8F8F8; border-left: 5px solid #FF5F3E; position: absolute; left: -5px; top: 0; z-index: -1; transition: top .2s; }
</style>
4、書寫並引用js代碼。
<script src="js/jquery.min.js"></script>
<script>
$(function(){
$('#lanPos').css('top',$('.hover').offset().top);
$('ul li').hover(function(){
$('#lanPos').css('top',$(this).offset().top);
},function(){
$('#lanPos').css('top',$('.hover').offset().top);
})
$('ul li').click(function(){
for(var i=0;i<$('ul li').size();i++){
if(this==$('ul li').get(i)){
$('ul li').eq(i).children('a').addClass('hover');
}else{
$('ul li').eq(i).children('a').removeClass('hover');
}
}
})
})
</script>
5、代碼整體結構。
6、查看效果
5、怎麼用css製作一個響應式布局的導航欄
這樣的你需要使用到css樣式
你可以去了解下
Media Queries 響應媒體查詢
你可以多去參考一些比較前沿的網站
比如 ipbun.cn 這樣網站的響應式做的不錯
6、HTML使用DIV+CSS如何實現左邊導航?
1、新建html文檔。
2、書寫hmtl代碼。
<ul>
<li><A class="hover" href="#">前端交流</A></li>
<li><A href="#">交互設計</A></li>
<li><A href="#">視覺設計</A></li>
<li><A href="#">用戶研究</A></li>
<li><A href="#">設計茶吧</A></li>
<li><A href="#">前端交流</A></li>
<li><A href="#">團隊生活</A></li>
<div id="lanPos"></div>
</ul>
3、書寫css代碼。
<style>
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video { margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; font-weight: normal; }
body { line-height: 1; }
:focus { outline: 1; }
article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary { display: block; }
nav ul, ul, li { list-style: none; }
blockquote, q { quotes: none; }
blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none; }
a { margin: 0; padding: 0; border: 0; font-size: 100%; vertical-align: baseline; background: transparent; text-decoration: none; }
a:hover { text-decoration: underline; }
ins { background-color: #ff9; color: #000; text-decoration: none; }
mark { background-color: #ff9; color: #000; font-style: italic; font-weight: bold; }
del { text-decoration: line-through; }
abbr[title], dfn[title] { border-bottom: 1px dotted #000; cursor: help; }
table { border-collapse: collapse; border-spacing: 0; }
hr { display: block; height: 1px; border: 0; border-top: 1px solid #cccccc; margin: 1em 0; padding: 0; }
input, select { vertical-align: middle; }
.fl { float: left; display: inline-block; }
.fr { float: right; display: inline-block; }
.clearfix:after { visibility: hidden; display: block; font-size: 0; content: " "; clear: both; height: 0; }
.clearfix { display: inline-table; }
* html .clearfix { height: 1%; }
.clearfix { display: block; }
html { font-size: 62.5%; /* 10÷16=62.5% */ }
body { font-size: 12px; font-size: 1.2rem; background: #F8F8F8; font-family: "宋體"; }
ul { width: 180px; margin: 0 auto; background: #fff; position: relative; z-index: 0; padding: 60px 20px 70px; }
ul li { height: 40px; line-height: 40px; text-align: center; border-bottom: 1px solid #F8F8F8; }
ul li a { color: #666; display: block; }
ul li a:hover { color: #FF5F3E; text-decoration: none; }
ul li a.hover { color: #FF5F3E; }
#lanPos { width: 225px; height: 40px; line-height: 40px; background: #F8F8F8; border-left: 5px solid #FF5F3E; position: absolute; left: -5px; top: 0; z-index: -1; transition: top .2s; }
</style>
4、書寫並引用js代碼。
<script src="js/jquery.min.js"></script>
<script>
$(function(){
$('#lanPos').css('top',$('.hover').offset().top);
$('ul li').hover(function(){
$('#lanPos').css('top',$(this).offset().top);
},function(){
$('#lanPos').css('top',$('.hover').offset().top);
})
$('ul li').click(function(){
for(var i=0;i<$('ul li').size();i++){
if(this==$('ul li').get(i)){
$('ul li').eq(i).children('a').addClass('hover');
}else{
$('ul li').eq(i).children('a').removeClass('hover');
}
}
})
})
</script>
5、代碼整體結構。
6、查看效果
7、dreamweaver 里邊做網頁 側欄和上邊導航欄之間那一塊空白如何解決用CSS,求教!!
側欄和上邊導航欄之間那一塊空白解決用
*{
margin:0;
padding:0;
}
全手寫望採納
8、用css設計一個程序,在網頁上設計出網站元素,元素包括導航欄,標題鏈接,圖片,文字
你這個是作業么,還是你們活動要做什麼,就做這一個頁面么,還是上面裡面鏈接都做,餓可以代做作業
9、css html製作網頁,用ul和li製作橫向導航欄
將ul裡面的li標簽都設置為右浮動即可。如:
<ul style="overflow:hidden; display:block">10、如何用JS或CSS製作網站導航條
下載碩思網頁菜單,有中文破解版得,全圖文傻瓜操作,自動生成js代碼,你只要把代碼放入網頁中就行了