head
和 style
标签添加一个样式 display:block
;块级元素
显示 ;<head style="display:block">
<meta charset="UTF-8">
<title>Documenttitle>
head>
<style style="display:block;">
.box{
width: 100px;
height: 100px;
background: red;
border-radius: 50%;
}
style>
没有换行
也 不可以编辑
;我们需要先来理解 contenteditable
这个属性;
contenteditable
: 是一个 「枚举属性」 ,表示元素是否可被 「用户编辑」 ;
这里我们把它加到 标签上 ,让展示出来的盒子可以编辑;
、、、、、省略其他
<style style="display:block;" contenteditable>
.box{
width: 100px;
height: 100px;
background: red;
border-radius: 50%;
}
style>
<style style="
display:block;
white-space: pre;
background:orange;
color:purple
"
contenteditable
>
.box{
width: 100px;
height: 100px;
background: red;
border-radius: 50%;
}
style>
DOCTYPE html>
<html lang="en">
<head style="display:block">
<meta charset="UTF-8">
<title>Documenttitle>
head>
<style style="
display:block;
white-space: pre;
background:orange;
color:purple"
contenteditable
>
.box {
width: 100px;
height: 100px;
background: red;
border-radius: 50%;
}
style>
<body>
<div class="box">div>
body>
html>