导航:首页 > 万维百科 > 网页设计中白色的代码

网页设计中白色的代码

发布时间:2021-01-25 17:10:30

1、网页设计--字体,颜色,字号,???<大家好,我不明白了>显示在网页上为什么没有变化,???

提醒你,不要在html里写 设置样式格式的代码;html用来表示结构和内容,css来控制样式格式,js来控制行为; 你这样编写的代码在W3C web2.0的检测中是属于错误的;

建议你将html和css一起学;只学html,css不懂,那么你做网页编程或者设计是没前途了;

2、在dreamweaver中设计jsp网页怎么做成背景为蓝色而字为白色?

<style type="text/css">
body{background:#00F; color:#FFFFFF;}
</style>

3、页面设计中,我一个背景是白色的,当鼠标滑过变成红色,怎么做到?求代码

首先少了body,其次,td需要在tr里面
再者,这个内要用JavaScript实现容
<html>
<head>

</head>
<script language="javascript">
function mv()
{
document.getElementById("v").style.backgroundColor="white";
}
function mo()
{
document.getElementById("v").style.backgroundColor="red";
}

</script>
<body>
<table>

<tr id="v" onMouseOut="mv()" onMouseOver="mo()" bordercolor="#CC99FF"><td>aaaaa</td></tr>
</table>
</body>
</html>

4、用css网页设计代码怎样把下面的几排文字放到网页的右边的白色背景中去

html:
<div class="box">
<div class="left">
左边copy
</div>
<div class="right">
右边
</div>
</div>

css:
.box{ width:1000px; overflow:hidden;}
.left{ float:left; width:200px;}
.right{ float:right; width:790px;}

大致就是这样,左边的左浮动,右边的右浮动,父盒子清除浮动,方法不止一个,具体情况具体做

5、制作网页时,怎么改网页的背景颜色啊,我不想用白色

在网页的“设计”窗口,新建空白的网页中点右键选择“页面属性”。
看到有个背景颜色选项,点那小方框右下角的小三角形,会弹出颜色选项框
选一种你想要的就可以。

6、在网页设计中,如何利用CSS让字体边缘有颜色,比如字体是白色的,他的边缘颜色是黑色的?

表格外发光:<table border="0" style="filter:glow(color=green,strength=16);width:234;height:99;border:1 dotted red;"><tr><td> </td></tr></table>

字体外发光:
<!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">
body {
font:14px "Verdana";

background-color:#3366cc;
}
.sizscolor {
position:absolute;
padding:4px;
filter:
Dropshadow(offx=1,offy=0,color=white)
Dropshadow(offx=0,offy=1,color=white)
Dropshadow(offx=0,offy=-1,color=white)
Dropshadow(offx=-1,offy=0,color=white);
}
</style>
</head>
<body>
<br>
<div class="sizscolor ">政策法规</div>
</body>
</html>

7、请问网页制作里面这个页面怎么把白色的区域拉长?

把白色区域设成最外层div,紧靠body。里面的内容会将div高度撑开

8、如何在前端网页设计中插入没有白底的图片

把你设计的图片去底色,也就是不要背景色,然后保存成png格式的图片,在插入到网页中,就可以了

9、网页设计链接怎么变白色

<a style="color:#FFF">Link</a>
- -您看看这个链接字的颜色是白色不?

与网页设计中白色的代码相关的知识