怎么設置段落不顯示呢,我實在沒看懂
<!DOCTYPE html>
<html>
<head>
? ? <meta charset="UTF-8">
? ? <title>none</title>
? ? <style type="text/css">
? ? p {
? ? ??
? ? }
? ? </style>
</head>
<body>
? ? <p>我愛學習,我愛慕課網</p>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
? ? <meta charset="UTF-8">
? ? <title>none</title>
? ? <style type="text/css">
? ? p {
? ? ??
? ? }
? ? </style>
</head>
<body>
? ? <p>我愛學習,我愛慕課網</p>
</body>
</html>
2022-04-16
舉報
2022-04-16
css3里面有個display屬性,值為none,就是隱藏。
p{
????display:none;
}