这是我的html代码,其内容未出现在我的div中。 Tetxtarea,复选框可以看到,但我写的文字无法看到。
我也写了css,它应该使屏幕中间的div也不会放在屏幕的中心。
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Creating Popup Div | istockphp.com</title>
<link href="style.css" rel="stylesheet" type="text/css" media="all" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"> </script>
<script type="text/javascript" src="script.js"></script>
<style type="text/css">
.center{
position: absolute;
height: 50px;
width: 50px;
background:red;
top:calc(50% - 50px/2);
left:calc(50% - 50px/2);
}
</style>
</head>
<body>
<a href="#" class="topopup">Click Here Trigger</a>
<div id="toPopup" class="center" style="background-color: #EDEFF1; height:300px;width:500px; -moz-border-radius-bottomright: 15px; border-bottom-right-radius: 15px; -moz-border-radius-bottomleft: 15px; moz-border-radius-topleft: 15px;moz-border-radius-topright: 15px; border-bottom-left-radius: 15px; ">
<div class="close"></div>
<span class="ecs_tooltip">Press Esc to close <span class="arrow"></span></span>
<div id="popup_content"> <!--your content start-->
<p><b>Share post </b></p>
<textarea style="height:65px;width:400px;">
</textarea> <br>
<input type="checkbox"> - Facebook <hr> </input>
<input type="checkbox"> - Twitter <hr>
<input type="checkbox"> - Linked in <hr>
</br></br>
</div> <!--your content end-->
</div>
</art>
</body>
</html>
JSFiddle链接:
在jsfiddle上显示文字。实际上div应该弹出而不是直接出现。 它可以在jsfiddle上看到。
但在我的本地主机文本中无法看到div。
答案 0 :(得分:2)
检查一下。对于textarea,打开和关闭标签(甚至空格)之间的内容将被视为内容。
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Creating Popup Div | istockphp.com</title>
<link href="style.css" rel="stylesheet" type="text/css" media="all" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"> </script>
<script type="text/javascript" src="script.js"></script>
<style type="text/css">
.center{
position: absolute;
height: 50px;
width: 50px;
background:red;
margin: auto;
bottom: 0;
left: 0;
top: 0;
right: 0;
}
</style>
</head>
<body>
<a href="#" class="topopup">Click Here Trigger</a>
<div id="toPopup" class="center" style="background-color: #EDEFF1; height:300px;width:500px; -moz-border-radius-bottomright: 15px; border-bottom-right-radius: 15px; -moz-border-radius-bottomleft: 15px; moz-border-radius-topleft: 15px;moz-border-radius-topright: 15px; border-bottom-left-radius: 15px; ">
<div class="close"></div>
<span class="ecs_tooltip">Press Esc to close <span class="arrow"></span></span>
<div id="popup_content"> <!--your content start-->
<p><b>Share post </b></p>
<textarea style="height:65px;width:400px;"></textarea> <br>
<input type="checkbox"> - Facebook <hr>
<input type="checkbox"> - Twitter <hr>
<input type="checkbox"> - Linked in <hr>
</br></br>
</div> <!--your content end-->
</div>
</body>
</html>
答案 1 :(得分:1)
我不确定你的意思是“我写的任何文字都看不到”但我已修复你的css和html以允许弹出div在页面中居中。
如果您有CSS文件,那么将所有样式放在CSS文件中。不要在HTML和CSS中混合使用样式,因为调试和维护代码时会遇到问题。
这是更新的小提琴:http://jsfiddle.net/JJ5rx/
HTML:
<a href="#" class="topopup">Click Here Trigger</a>
<div id="toPopup" class="center">
<div class="close"></div>
<span class="ecs_tooltip">Press Esc to close <span class="arrow"></span></span>
<div id="popup_content"> <!--your content start-->
<p><b>Share post </b></p>
<textarea cols="50" rows="5" placeholder="Enter comment..."></textarea> <br>
<input type="checkbox"> - Facebook <hr> </input>
<input type="checkbox"> - Twitter <hr>
<input type="checkbox"> - Linked in <hr>
</br></br>
</div> <!--your content end-->
</div>
CSS:
.center{
margin: 0 auto;
background-color: #EDEFF1;
height:300px;
width:450px;
-moz-border-radius-bottomright: 15px;
border-bottom-right-radius: 15px;
-moz-border-radius-bottomleft: 15px;
moz-border-radius-topleft: 15px;
moz-border-radius-topright: 15px;
border-bottom-left-radius: 15px;
}
答案 2 :(得分:1)
不太确定为什么你看不到你用textarea写的文字,我可以。 我建议你改变一下这样的风格:
.center{
position: absolute;
height:300px;
width:500px;
margin: -150px 0 0 -250px;
top: 50%;
left: 50%;
background-color: #EDEFF1;
border-bottom-right-radius: 15px;
border-bottom-left-radius: 15px;
border-top-right-radius: 15px;
border-top-left-radius: 15px;
-moz-border-radius-bottomright: 15px;
-moz-border-radius-bottomleft: 15px;
-moz-border-radius-topleft: 15px;
-moz-border-radius-topright: 15px;
}
这应解决中心问题,因为你有一个带有你的风格描述的课程,我建议把所有造型选项放在那里,我的意思是
<div id="toPopup" class="center" style="background-color: #EDEFF1; height:300px;width:500px; -moz-border-radius-bottomright: 15px; border-bottom-right-radius: 15px; -moz-border-radius-bottomleft: 15px; moz-border-radius-topleft: 15px;moz-border-radius-topright: 15px; border-bottom-left-radius: 15px; ">
应该只是
<div id="toPopup" class="center" >
答案 3 :(得分:0)