2016年12月20日 星期二

h1 margin-top 會影響到父層DIV 產生多餘的 margin-top

h1 margin-top 會影響到父層DIV 產生多餘的 margin-top

HTML
<div class="parent"> 
<h1>HI HI HI</h1> 
</div>


css
.parent{margin:0;}
h1{margin: 50px auto; }


解決方案
在父層div加上overflow:auto

.parent{margin:0; overflow:auto;}

參考來源
http://stackoverflow.com/questions/20689575/css-margin-top-of-h1-affects-parents-margin

2016年12月9日 星期五

owlcarousel 100%高的用法

1. 先去GITHUB 下載 owlcarousel 2.0新版
https://github.com/OwlCarousel2/OwlCarousel2

2. 把CSS放到html裡面
CSS 放到<head>裡面

<link rel="stylesheet" href="dist/owlcarousel/owl.carousel.min.css">

<link rel="stylesheet" href="dist/owlcarousel/owl.theme.default.min.css">


3. JS 放到<body>最下面,記得要先引用jquery

<!-- jQuery -->
<script src="//code.jquery.com/jquery.js"></script>

<!--貓頭鷹跑馬燈的JS-->
<script src="dist/owlcarousel/owl.carousel.min.js"></script>
<!--啟用貓頭鷹-->
<script>
$('.owl-carousel').owlCarousel({
loop:true,
margin:10,
nav:true,
items:1
})
</script>
4. html 我用背景的跑馬燈
<div class="owl-carousel">
    <div class="item" style="background-image: url(img/b1.jpg);"><h4>1</h4></div>
    <div class="item" style="background-image: url(img/b2.jpg);"><h4>2</h4></div>
</div>
5. 100高的設定 100% height CSS 設定

html,body{height: 100%;}
body{min-height:100%;}
.owl-carousel{height: 100%;}
.owl-carousel .owl-stage-outer{height: 100%;}
.owl-stage{height: 100%;}
.owl-item {height: 100%;}
.owl-item .item{height: 100%; background-size: cover;background-position: center center;}