<html>
<head>
<style>
img {
float: left;
}
</style>
</head>
<body>
<img src="/i/pic/w3logo.png" width="180" height="167">
<p id="demo">
这是一些文字。这是一些文字。这是一些文字。
这是一些文字。这是一些文字。这是一些文字。
这是一些文字。这是一些文字。这是一些文字。
</p>
<button type="button" onclick="myFunction()">清除文本的左侧</button>
<script>
function myFunction() {
document.getElementById("demo").style.clear = "left";
}
</script>
</body>
</html>