x
 
<!DOCTYPE html>
<html>
<body>
 
<img style="float:left;" src="/i/pic/w3logo.png" width="180" height="167">
<p id="demo" style="clear:left;">
这是一些文字。这是一些文字。这是一些文字。
这是一些文字。这是一些文字。这是一些文字。
这是一些文字。这是一些文字。这是一些文字。
</p>
 
<button type="button" onclick="myFunction()">返回 clear 属性的值</button>
<script>
function myFunction() {
  alert(document.getElementById("demo").style.clear);
}
</script>
</body>
</html>