>  Q&A  >  본문

为什么的CSS设置没有作用??

<!DOCTYPE HTML>
<HTML>
<head>
<meta charset="utf-8">
<title>代码练习4</title>
<style type="text/css">
p    {font-size:16px
      font-weight:bold
      color:yellow
      }
</style>
</head>
<body>
   <h1>标题</h1>
   <p id="a">代码练习。</p>
   
</body>
</html>


城堡下的诡洞城堡下的诡洞2858일 전870

모든 응답(2)나는 대답할 것이다

  • 数据分析师

    数据分析师2017-09-30 23:26:05

    CSS 설정이 아무런 효과가 없는 이유는 무엇입니까? ? -PHP 중국어 사이트 Q&A-CSS 설정이 왜 효과가 없나요? ? -PHP 중국어 홈페이지 Q&A

    꼭 보고 배워보세요.

    회신하다
    0
  • 迷茫

    迷茫2016-12-21 16:12:58

    <style type="text/css">
    p{font-size:16px
          font-weight:bold
          color:yellow
          }
    </style>

    注意每次写完要加上分号

    <style type="text/css">
    p{
          font-size:16px;
          font-weight:bold;
          color:yellow;
          }
    </style


    회신하다
    0
  • 취소회신하다