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