如何在 Chrome 开发工具上编辑和反映我在 HTML 中所做的更改(在 chrome 上按 f12)?
在源选项卡中,我们可以编辑页面,但是当我单击保存按钮时,它不会反映对原始文件的更改。
有没有办法保存这些更改?
这是我的代码:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>CSS Ribbon</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="container">
<div class="menu">
<ul>
<li class="l1">
<a href="#">CSS3</a>
</li>
<li class="l2">
<a href="#">is really</a>
</li>
<li class="l3">
<a href="#">powerful</a>
</li>
</ul>
</div>
<div class="bubble">
<div class="rectangle">
<h2>3D CSS.................................................................... ...................klklklklk Ribbon</h2>
</div>
<div class="triangle-l"></div>
<div class="triangle-r"></div>
<div class="info">
<h2>I Have Used Only CSS, friends!</h2>
<p>For this tutorial I have used some new properties of the CSS3. You can realize a nice 3D effect using only CSS, it's really fantastic.<br />
It doesn't work with IE!</p>
<p><a href="http://www.pvmgarage.com/en/2010/01/10/">Go to the tutorial!</a></p>
</div>
</div>
</div>
</body>
</html>