问答详情
源自:2-3 编程练习

麻烦大家看看为什么我的边框显示不了呢?

<!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=utf-8" />

<title>盒子模型练习题</title>

<style type="text/css">

.myBox {

       width:200px;

       height:100px;

       border:1px black;

       margin-top:15px;

       padding-left:15px;

       }

</style >

<!--在此定义一个类选择器myBox,根据要求设置相关CSS属性-->


</head>

<body>

<div class="myBox">

Hello World!

</div>


<!--在此添加一个div标签,并设置其class属性为myBox-->




</body>

</html>


提问者:慕函数2446952 2019-03-29 09:56

个回答

  • 王酸菜
    2019-03-31 09:39:03

    border:1px solid black;

    solid  是实线

  • qq_慕盖茨4237780
    2019-03-29 10:08:48

    border:1px solid black;

    solid是边框的样式,不设置的话是看不到的