<code></code>代码加上去,究竟应该加在哪里,几个小时也没做出来,都是错误?

<!DOCTYPE HTML>

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8">

<title>code标签介绍</title>

</head>

<body>

<p>我们可能知道水平渐变的实现,类似这样:{background-image:linear-gradient(left, red 100px, yellow 200px);}</p>

</body>

</html>


慕后端736176
浏览 798回答 1
1回答

第二钢协

<!DOCTYPE html><html><head>    <meta charset="UTF-8">    <title>Document</title></head><body>    <p style='background-image:linear-gradient(to left, red 100px, yellow 200px);'>        我们可能知道水平渐变的实现,类似这样:        <code>background-image:linear-gradient(to left, red 100px, yellow 200px);</code>    </p></body></html>朋友,你linear-gradient 里面的用法是错的,少了了个to,没有指明方向,所以无法识别不能生效
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Html5