首页 > 开发 > CSS > 正文

利用css的样式对文本进行隐藏和显示等操作

2024-07-11 08:37:31
字体:
来源:转载
供稿:网友


<!DOCTYPE html PUBLIC “-//W3C//DTD HTML 4.01 Transitional//EN” “http://www.w3.org/TR/html4/loose.dtd”>
<html>
<head>
<meta http-equiv=”Content-Type” content=”text/html; charset=UTF-8″>
<title>Insert title here</title>
<!–文本的显示和隐藏 –>
<style type=”text/css”>
#div_2{
display: inline;
}
#span_1{
/* display:block; */
visibility: hidden;
}
</style>
</head>
<body>
<div>div1</div>
<div id=”div_2″>div2</div>
<span id=”span_1″>span1</span>
<span>span2</span>
</body>
</html>

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表