在哪里可以看到這個體現出來的效果?怎樣看到這個300px的寬度?
<style>
? ? .content {
? ? ? ? width: 300px;
? ? }
? ? .append{
? ? ? ? background-color: blue;
? ? }
? ? .appendTo{
? ? ? ? background-color: red;
? ? }
? ? </style>
</head>
<body>
? ? <h2>通過append與appendTo添加元素</h2>
? ? <button id="bt1">點擊通過jQuery的append添加元素</button>
? ? <button id="bt2">點擊通過jQuery的appendTo添加元素</button>
? ? <div class="content"></div>
這其中的<div class="content"></div>起到什么作用了?
?.content {
? ? ? ? width: 300px;
? ? }
在哪里可以看到這個體現出來的效果?怎樣看到這個300px的寬度?
2016-08-25
沒有高度 你看什么東西?
2016-08-25
給.content設置一個背景色你就可以看到了