css怎么写正方形

1.不用css怎么在网页里做一个正方形<!DOCTYPE HTML>
<html>
<body>
<canvas id="myCanvas">your browser does not support the canvas tag </canvas>
<script type="text/javascript">
var canvas=document.getElementById('myCanvas');
var ctx=canvas.getContext('2d');
ctx.fillStyle='#FF0000'; //颜色
ctx.fillRect(0,0,80,80); // x,y,长度,高度
</script>
</body>
【css怎么写正方形】</html>
2.div+css中将默认的单选按钮样式(圆的)变成正方形的样式怎么写1、首先打开hbuilder软件,新建几个默认的复选框 。
2、然后在上方的style标签设置input的样式,先设置input的display属性为none,将默认的单选框去掉,在设置一下各个单选框的margin的距离 。
3、接着在下方继续设置样式,设置label标签的before和after伪元素,将原有before的单选框选中状态的属性“checked+label”设置变为红色实心框,同时未选中的状态的“label::after”为白色空心方框 。
4、最后打开浏览器,即可看到设置好的样式,其中被选中的是红色的实心方框,没被选择的则是没有颜色的方框 。
3.爱心的css名称怎么写前期预备知识:明白正方形的画法 。
明白圆形的画法 。明白什么是定位 。
明白怎么旋转 。话不多说,先教大家怎么用css画一个圆形 。
.disc1{ width: 100px; height: 100px; border:1px solid red; background-color: red; margin:300px 0px 0px 300px; border-radius:100%; float:left;} 由于我们的爱心是由两个圆和一个正方形组成的,所以我们还需要再来一个圆形 。.disc2{ width: 100px; height: 100px; border:1px solid red; background-color: red; margin:250px 0px 0px 0px; border-radius:100%; float:left; position: relative; right: 50px;} 第三步我们就需要做一个正方形了 。
.square{ width: 100px; height: 100px; border:1px solid red; background-color: red; margin: 300px 0px 0px 0px; float: left; position: relative; right: 152px;} 做完这些的效果已经基本上出来了,但是我们还需要调整一下爱心的角度,这时就需要用到我们css样式中的transform中的rotate属性了 。我们由于需要把三个div都旋转角度,所以我们把这三个div放在一个div里面 。
具体代码如下:.main{ transform: rotate(45deg); margin: 300px;} 做到现在,我们的爱心就已经做出来咯 。效果图如下:全部代码如下(包含HTML代码和CSS代码)1 2 3 4 5 6 7 8 9 10 14 15 11 12 13 1 *{ 2 margin: 0px; 3 padding: 0px; 4 } 5 .main{ 6 transform: rotate(45deg); 7 margin: 300px; 8 } 9 .disc1{10 width: 100px;11 height: 100px;12 border:1px solid red;13 background-color: red;14 margin:300px 0px 0px 300px;15 border-radius:100%;16 float:left;17 }18 .disc2{19 width: 100px;20 height: 100px;21 border:1px solid red;22 background-color: red;23 margin:250px 0px 0px 0px;24 border-radius:100%;25 float:left;26 position: relative;27 right: 50px;28 }29 .square{30 width: 100px;31 height: 100px;32 border:1px solid red;33 background-color: red;34 margin: 300px 0px 0px 0px;35 float: left;36 position: relative;37 right: 152px;38 } 。
4.html如何编写边长由5个*围成的正方形<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>;无标题文档</title>
<style type="text/css">
#out_div{
height:300px;
width:300px;
border:1px solid blue;
}
.divall{
float:left;
text-align:center;
}
#div1,#div4{
width:100px;
height:200px;
background:#FF3;
}
#div2,#div5{
width:200px;
height:100px;
background:#F90;
}
#div3{
width:100px;
height:100px;
background:red;
}
</style>
</head>
<body>