css效果:怎么把spot的元素放置在网页的右边空白区域_html/css_WEB-ITnose

WBOY
풀어 주다: 2016-06-21 09:15:35
원래의
1086명이 탐색했습니다.

<style type="text/css">        .spot{            position: relative;            display: list-item;            margin: 5px;            width: 30px;            height: 30px;            border-radius: 60px;            left: 98%;        }        .spot:hover{            background-color: #0080ff;        }        .header{            background-color: #262626;            margin: 20px auto;            width: 95%;            height: 160px;            border-radius: 20px;            font-weight: bold;            font-size: 25px;            color: #2b669a;            text-align: center;        }        .hd_btn_submit,.hd_input{            position: relative;            float: right;            top:10%;        }        .show_img{            position: relative;            background-color: #245269;            height: 500px;            width: 80%;            border-radius: 20px;            left: 35px;        }    </style></head><body>    <div class="header">        <p>标题</p>        <button class="hd_btn_submit" type="submit">register</button>        <label>            <input class="hd_input" type="text">        </label>    </div>    <div class="container_showImg">        <div class="show_img"></div>        <img  class="spot" src="img/spot.png" alt="css效果:怎么把spot的元素放置在网页的右边空白区域_html/css_WEB-ITnose" >        <img  class="spot" src="img/spot.png" alt="css效果:怎么把spot的元素放置在网页的右边空白区域_html/css_WEB-ITnose" >        <img  class="spot" src="img/spot.png" alt="css效果:怎么把spot的元素放置在网页的右边空白区域_html/css_WEB-ITnose" >        <img  class="spot" src="img/spot.png" alt="css效果:怎么把spot的元素放置在网页的右边空白区域_html/css_WEB-ITnose" >        <img  class="spot" src="img/spot.png" alt="css效果:怎么把spot的元素放置在网页的右边空白区域_html/css_WEB-ITnose" >        <img  class="spot" src="img/spot.png" alt="css效果:怎么把spot的元素放置在网页的右边空白区域_html/css_WEB-ITnose" >        <img  class="spot" src="img/spot.png" alt="css效果:怎么把spot的元素放置在网页的右边空白区域_html/css_WEB-ITnose" >        <img  class="spot" src="img/spot.png" alt="css效果:怎么把spot的元素放置在网页的右边空白区域_html/css_WEB-ITnose" >    </div></body>
로그인 후 복사


spot的top:35%没作用,怎么能放到右边空白区域,最好能中间container容器放大后,放置在其上面?谢谢大神!


回复讨论(解决方案)

你是相对定位的
top: -500px;

<style type="text/css">        .spot{		display:list-item;            margin: 5px;            width: 30px;            height: 30px;            border-radius: 60px;         }        .spot:hover{            background-color: #0080ff;        }        .header{            background-color: #262626;            margin: 20px auto;            width: 95%;            height: 160px;            border-radius: 20px;            font-weight: bold;            font-size: 25px;            color: #2b669a;            text-align: center;        }        .hd_btn_submit,.hd_input{            position: relative;            float: right;            top:10%;        }        .show_img{		float:left;            background-color: #245269;            height: 500px;            width: 80%;            border-radius: 20px;            left: 35px;        }    </style></head><body>    <div class="header">        <p>标题</p>        <button class="hd_btn_submit" type="submit">register</button>        <label>            <input class="hd_input" type="text">        </label>    </div>    <div class="container_showImg">        <div class="show_img"></div>        <img  class="spot" src="img/spot.png" alt="css效果:怎么把spot的元素放置在网页的右边空白区域_html/css_WEB-ITnose" >        <img  class="spot" src="img/spot.png" alt="css效果:怎么把spot的元素放置在网页的右边空白区域_html/css_WEB-ITnose" >        <img  class="spot" src="img/spot.png" alt="css效果:怎么把spot的元素放置在网页的右边空白区域_html/css_WEB-ITnose" >        <img  class="spot" src="img/spot.png" alt="css效果:怎么把spot的元素放置在网页的右边空白区域_html/css_WEB-ITnose" >        <img  class="spot" src="img/spot.png" alt="css效果:怎么把spot的元素放置在网页的右边空白区域_html/css_WEB-ITnose" >        <img  class="spot" src="img/spot.png" alt="css效果:怎么把spot的元素放置在网页的右边空白区域_html/css_WEB-ITnose" >        <img  class="spot" src="img/spot.png" alt="css效果:怎么把spot的元素放置在网页的右边空白区域_html/css_WEB-ITnose" >        <img  class="spot" src="img/spot.png" alt="css效果:怎么把spot的元素放置在网页的右边空白区域_html/css_WEB-ITnose" >     </div> </body>
로그인 후 복사
로그인 후 복사

你是相对定位的
top: -500px;


谢x谢!relative相对的的元素是相邻的上级元素吗?

<style type="text/css">        .spot{		display:list-item;            margin: 5px;            width: 30px;            height: 30px;            border-radius: 60px;         }        .spot:hover{            background-color: #0080ff;        }        .header{            background-color: #262626;            margin: 20px auto;            width: 95%;            height: 160px;            border-radius: 20px;            font-weight: bold;            font-size: 25px;            color: #2b669a;            text-align: center;        }        .hd_btn_submit,.hd_input{            position: relative;            float: right;            top:10%;        }        .show_img{		float:left;            background-color: #245269;            height: 500px;            width: 80%;            border-radius: 20px;            left: 35px;        }    </style></head><body>    <div class="header">        <p>标题</p>        <button class="hd_btn_submit" type="submit">register</button>        <label>            <input class="hd_input" type="text">        </label>    </div>    <div class="container_showImg">        <div class="show_img"></div>        <img  class="spot" src="img/spot.png" alt="css效果:怎么把spot的元素放置在网页的右边空白区域_html/css_WEB-ITnose" >        <img  class="spot" src="img/spot.png" alt="css效果:怎么把spot的元素放置在网页的右边空白区域_html/css_WEB-ITnose" >        <img  class="spot" src="img/spot.png" alt="css效果:怎么把spot的元素放置在网页的右边空白区域_html/css_WEB-ITnose" >        <img  class="spot" src="img/spot.png" alt="css效果:怎么把spot的元素放置在网页的右边空白区域_html/css_WEB-ITnose" >        <img  class="spot" src="img/spot.png" alt="css效果:怎么把spot的元素放置在网页的右边空白区域_html/css_WEB-ITnose" >        <img  class="spot" src="img/spot.png" alt="css效果:怎么把spot的元素放置在网页的右边空白区域_html/css_WEB-ITnose" >        <img  class="spot" src="img/spot.png" alt="css效果:怎么把spot的元素放置在网页的右边空白区域_html/css_WEB-ITnose" >        <img  class="spot" src="img/spot.png" alt="css效果:怎么把spot的元素放置在网页的右边空白区域_html/css_WEB-ITnose" >     </div> </body>
로그인 후 복사
로그인 후 복사


谢谢!


你是相对定位的
top: -500px;


谢x谢!relative相对的的元素是相邻的上级元素吗?
不是,
relative是相对于元素原本的位置进行偏移。
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿