按鈕的,我知道這很簡單,但我想不出它,因爲我不知道CSS。我嘗試了幾個谷歌選項,但它不會工作。我想要做的是在瀏覽器中心(垂直和水平)放置一對按鈕。我試着把這一對按鈕放在div
標籤中,但是隨時隨地我都這樣做了,按鈕消失了。我的想法是將按鈕放在div
標記中,並將該div放在屏幕中央。任何想法如何解決這個問題。來到這裏提琴:https://jsfiddle.net/um7ctpnj/1/中心組中的瀏覽器
$(document).ready(function(){
\t $('#show').click(function(){
\t \t $("div:hidden:first").fadeIn("slow");
\t });
\t $('#hide').click(function(){
\t \t $("div").fadeOut("fast");
\t });
});
div {
margin: 3px;
width: 80px;
display: none;
height: 80px;
float: left;
}
#one {
background: #f00;
}
#two {
background: #0f0;
}
#three {
background: #00f;
}
<!doctype html>
<title>Button Show</title>
<body>
<body>
<button id="show" type="button" class="btn btn-primary">Click Me!</button>
<button id="hide" type="button" class="btn btn-primary">Hide Me Now!</button>
<div id="one">1</div>
<div id="two">2</div>
<div id="three">3</div>
<script src="javascript.js"></script>
</body>
</html>
當你說中央的DIV,你的意思是水平和垂直方向? – Lee
是的。垂直和水平@Lee – Emanuel
當你將按鈕換到DIV時,它們會消失,因爲你的CSS會這麼說'div {display:none; }'。 – hungerstar