display attribute
Function: Specifies how web page elements are displayed.
Values: none (hidden), block (displayed as block elements), inline (displayed as inline elements)
block: Yes Convert inline elements to block elements.
inline: You can convert block elements into inline elements.
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>php.cn</title>
<style type="text/css">
p{
display:none;
}
</style>
</head>
<body>
<h1>习近平心中的互联网</h1>
<p>互联网是20世纪最伟大的发明,它正在将人类“一网打尽”,人们在不知不觉中已经融入了互联网生态,互联网让世界变成了“鸡犬之声相闻”的地球村。</p>
</body>
</html>Delete the following line and check the result
p{
display:none;
}