<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 lazy" src="/static/imghwm/default1.png" data-src="img/spot.png" alt="css效果:怎么把spot的元素放置在网页的右边空白区域_html/css_WEB-ITnose" > <img class="spot lazy" src="/static/imghwm/default1.png" data-src="img/spot.png" alt="css效果:怎么把spot的元素放置在网页的右边空白区域_html/css_WEB-ITnose" > <img class="spot lazy" src="/static/imghwm/default1.png" data-src="img/spot.png" alt="css效果:怎么把spot的元素放置在网页的右边空白区域_html/css_WEB-ITnose" > <img class="spot lazy" src="/static/imghwm/default1.png" data-src="img/spot.png" alt="css效果:怎么把spot的元素放置在网页的右边空白区域_html/css_WEB-ITnose" > <img class="spot lazy" src="/static/imghwm/default1.png" data-src="img/spot.png" alt="css效果:怎么把spot的元素放置在网页的右边空白区域_html/css_WEB-ITnose" > <img class="spot lazy" src="/static/imghwm/default1.png" data-src="img/spot.png" alt="css效果:怎么把spot的元素放置在网页的右边空白区域_html/css_WEB-ITnose" > <img class="spot lazy" src="/static/imghwm/default1.png" data-src="img/spot.png" alt="css效果:怎么把spot的元素放置在网页的右边空白区域_html/css_WEB-ITnose" > <img class="spot lazy" src="/static/imghwm/default1.png" data-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 lazy" src="/static/imghwm/default1.png" data-src="img/spot.png" alt="css效果:怎么把spot的元素放置在网页的右边空白区域_html/css_WEB-ITnose" > <img class="spot lazy" src="/static/imghwm/default1.png" data-src="img/spot.png" alt="css效果:怎么把spot的元素放置在网页的右边空白区域_html/css_WEB-ITnose" > <img class="spot lazy" src="/static/imghwm/default1.png" data-src="img/spot.png" alt="css效果:怎么把spot的元素放置在网页的右边空白区域_html/css_WEB-ITnose" > <img class="spot lazy" src="/static/imghwm/default1.png" data-src="img/spot.png" alt="css效果:怎么把spot的元素放置在网页的右边空白区域_html/css_WEB-ITnose" > <img class="spot lazy" src="/static/imghwm/default1.png" data-src="img/spot.png" alt="css效果:怎么把spot的元素放置在网页的右边空白区域_html/css_WEB-ITnose" > <img class="spot lazy" src="/static/imghwm/default1.png" data-src="img/spot.png" alt="css效果:怎么把spot的元素放置在网页的右边空白区域_html/css_WEB-ITnose" > <img class="spot lazy" src="/static/imghwm/default1.png" data-src="img/spot.png" alt="css效果:怎么把spot的元素放置在网页的右边空白区域_html/css_WEB-ITnose" > <img class="spot lazy" src="/static/imghwm/default1.png" data-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 lazy" src="/static/imghwm/default1.png" data-src="img/spot.png" alt="css效果:怎么把spot的元素放置在网页的右边空白区域_html/css_WEB-ITnose" > <img class="spot lazy" src="/static/imghwm/default1.png" data-src="img/spot.png" alt="css效果:怎么把spot的元素放置在网页的右边空白区域_html/css_WEB-ITnose" > <img class="spot lazy" src="/static/imghwm/default1.png" data-src="img/spot.png" alt="css效果:怎么把spot的元素放置在网页的右边空白区域_html/css_WEB-ITnose" > <img class="spot lazy" src="/static/imghwm/default1.png" data-src="img/spot.png" alt="css效果:怎么把spot的元素放置在网页的右边空白区域_html/css_WEB-ITnose" > <img class="spot lazy" src="/static/imghwm/default1.png" data-src="img/spot.png" alt="css效果:怎么把spot的元素放置在网页的右边空白区域_html/css_WEB-ITnose" > <img class="spot lazy" src="/static/imghwm/default1.png" data-src="img/spot.png" alt="css效果:怎么把spot的元素放置在网页的右边空白区域_html/css_WEB-ITnose" > <img class="spot lazy" src="/static/imghwm/default1.png" data-src="img/spot.png" alt="css效果:怎么把spot的元素放置在网页的右边空白区域_html/css_WEB-ITnose" > <img class="spot lazy" src="/static/imghwm/default1.png" data-src="img/spot.png" alt="css效果:怎么把spot的元素放置在网页的右边空白区域_html/css_WEB-ITnose" > </div> </body>
谢谢!
你是相对定位的
top: -500px;
谢x谢!relative相对的的元素是相邻的上级元素吗?
不是,
relative是相对于元素原本的位置进行偏移。

TocreatealistinHTML,useforunorderedlistsandfororderedlists:1)Forunorderedlists,wrapitemsinanduseforeachitem,renderingasabulletedlist.2)Fororderedlists,useandfornumberedlists,customizablewiththetypeattributefordifferentnumberingstyles.

HTML is used to build websites with clear structure. 1) Use tags such as, and define the website structure. 2) Examples show the structure of blogs and e-commerce websites. 3) Avoid common mistakes such as incorrect label nesting. 4) Optimize performance by reducing HTTP requests and using semantic tags.

ToinsertanimageintoanHTMLpage,usethetagwithsrcandaltattributes.1)UsealttextforaccessibilityandSEO.2)Implementsrcsetforresponsiveimages.3)Applylazyloadingwithloading="lazy"tooptimizeperformance.4)OptimizeimagesusingtoolslikeImageOptimtoreduc

The core purpose of HTML is to enable the browser to understand and display web content. 1. HTML defines the web page structure and content through tags, such as, to, etc. 2. HTML5 enhances multimedia support and introduces and tags. 3.HTML provides form elements to support user interaction. 4. Optimizing HTML code can improve web page performance, such as reducing HTTP requests and compressing HTML.

HTMLtagsareessentialforwebdevelopmentastheystructureandenhancewebpages.1)Theydefinelayout,semantics,andinteractivity.2)SemantictagsimproveaccessibilityandSEO.3)Properuseoftagscanoptimizeperformanceandensurecross-browsercompatibility.

A consistent HTML encoding style is important because it improves the readability, maintainability and efficiency of the code. 1) Use lowercase tags and attributes, 2) Keep consistent indentation, 3) Select and stick to single or double quotes, 4) Avoid mixing different styles in projects, 5) Use automation tools such as Prettier or ESLint to ensure consistency in styles.

Solution to implement multi-project carousel in Bootstrap4 Implementing multi-project carousel in Bootstrap4 is not an easy task. Although Bootstrap...

How to achieve the effect of mouse scrolling event penetration? When we browse the web, we often encounter some special interaction designs. For example, on deepseek official website, �...


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

WebStorm Mac version
Useful JavaScript development tools

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

Dreamweaver CS6
Visual web development tools

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software
