1. 程式人生 > >超出父容器時不要滾動條但是要滾動條效果

超出父容器時不要滾動條但是要滾動條效果

<html>
<head>
<title>留滾動效果,去除滾動條</title>
</head>
<style>

</style>
<body >


<div id='father' style='overflow:hidden;background-color:yellow; width: 500px;height:250px;'>
<div id='son' style='background-color:red;width:530px;height:250px;overflow-y:auto;'>
<p style="height: 900px;">我是內容</p>
</div>
</div>


</body>
<script>

</script>
</html>