导航:首页 > 万维百科 > 网页设计模板cssdiv

网页设计模板cssdiv

发布时间:2021-01-15 18:11:43

1、网页设计 DIV+CSS不懂里面的DIV 指什么

其实 DIV 类似于 TABLE 标签。

TABLE 有 tr 和 td 等,而 DIV 对应的则是 ul 和 li 等。

个人认为在不同内核浏览器的定位兼容性上, TABLE 比 DIV 通用性更好,DIV经常会有一些离奇古怪的定位问题。

当然我个人是一开始就学习 TABLE 的,所以对 DIV 还是不是很习惯,通常都是 TABLE + DIV + CSS。

2、急求DIV CSS自适应布局手机网页设计的模版

这个模版可以 当你缩小浏览器窗口时 可以看到它的样式的变化 ~~手机也适用

3、div css模板 是怎么制作的

首先网页的结构还是html搞定的,而网页中各部分的样式(是红的是绿的,专是大的是小)是由css决定的。属
而div,只是一组标签<div></div>,制作网页时可以用它来选中html中的某个部分,为他命名,从而让css为这个部分添加样式。

说的比较白话,希望能听得懂..

用photoshop制作psn文件,只不过是在用代码设计网页的初期,先做出一个草图,便于定位和切图。

对于css,lz应该多看看这方面的书。另外,css+div只是一种运用css的方法,“div+css模板”这种东西是不存在的。

4、求用css和div制作个人博客的网页模板?

熟悉前端的可以自己制作,也可到网上下载别人参考修改。css+div制作个人博客的网页模板地址lmlblog.com/blog/1/,喜欢的可以自己修改,也可以自己学习制作等

5、网页设计 DIV

差不多了  你把图片自己加上就可以了

  <!DOCTYPE HTML>  
    <html>  
    <head>  
    <style type="text/css"> 
      body{background:#000;font-size:12px;}
 .header_box{width:700px;height:50px;background:#fff;filter:alpha(opacity:50);opacity:0.5;-moz-border-radius:0 0 10px 10px; -webkit-border-radius:0 0 10px 10px;border-radius:0 0 10px 10px;}
     .header_box a,.header_box a i{display:inline-block;*display:inline;*zoom:1;line-height:50px;color:#555}
 .header_box a i{border:1px solid red;float:left;margin-top:15px;margin-right:5px;}
 .header_box .span1{padding-right:20px;}
 .header_box .span2{padding-right:200px;}
 .header_box .span3{padding-right:20px;}
 .header_box .span1 i{width:20px;height:20px;background:url(../images/email.png) no-repeat;}
 .header_box .span2 i{width:20px;height:20px;background:url(../images/phone.png) no-repeat;}
 .header_box .span3 i{width:20px;height:20px;background:url(../images/login.png) no-repeat;}
 .header_box .span4 i{width:20px;height:20px;background:url(../images/account.png) no-repeat;}
   </style>  
    </head>  
<body>
<div class="header_box">
    <a href="#" class="span1"><i></i>[email protected]</a>
    <a href="#" class="span2"><i></i>0423656655</a>
    <a href="#" class="span3"><i></i>Login</a>
    <a href="#" class="span4"><i></i>Create an account</a>
</div>
</body>
</html>

6、求一个网页制作高手用div+css做一个网页布局 急 谢谢!!!!!!!!!!!

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
<style type="text/css">
#containt{ height:530px; width:400px; margin:0 auto; border:1px solid #000000;}
#top{ height:100px; width:380px; margin-top:7px; margin-left:9px;}
#top_left{ height:100px; width:138px; float:left; border:1px solid #000000; border-right:none;}
#top_right{ height:100px; width:238px; float:left; border:1px solid #000000;}
#content{ height:50px; width:380px; margin-top:5px; margin-left:9px; border:1px solid #000000;}
#bottom{ height:350px; width:380px; margin-top:5px; margin-left:9px;}
#bom_left{ height:350px; width:138px; float:left; border:1px solid #000000;}
#bom_right{ height:350px; width:235px; float:left; border:1px solid #000000; margin-left:3px;}
.b_r_div{ height:100px; width:68px; margin-left:6px; float:left; margin-top:5px; border:1px solid #000000;}
#b_r_bottom{ height:120px; width:225px; margin-left:5px; float:left; margin-top:5px; border:1px solid #000000;}
</style>
</head>
<body>
<div id="containt">
<div id="top">
<div id="top_left"></div>
<div id="top_right"></div>
</div>
<div id="content"></div>
<div id="bottom">
<div id="bom_left"></div>
<div id="bom_right">
<div class="b_r_div"></div>
<div class="b_r_div"></div>
<div class="b_r_div"></div>
<div class="b_r_div"></div>
<div class="b_r_div"></div>
<div class="b_r_div"></div>
<div id="b_r_bottom"></div>
</div>
</div>
</div>
</body>
</html>

7、网页设计中css和div还有模板分别是做什么用的呢?

css自己理解复就是自己早就定义好的各种制样式,比如表格的背景色,页面的背景色,文本的大小等这些东西,然后在要用的时候就套用css,目的是为了网页风格一致,模板是网页大框架的总体设计,也是为了套用,div就是网页设计中的层,为了很好的控件网页中的特定区域。

8、网页设计里的,html、css、div是什么意思?

html就是做网页页面的标签语言
css是控制显示样式的
div是层
psd格式的模板需要用Photoshop打开
====================================
PSD模板就整个页面布局和样式的设计原稿,需要切片才能应用到网页上去

9、网页设计 DIV+CSS

肯定要裁剪的,但不说裁剪好往dw里倒,文字还要单独的div+css定位写在背景上

定位的时候尽量用div+css定位框架

table用来存数据更合适的

与网页设计模板cssdiv相关的知识