


A few questions about div positioning position:fixed_html/css_WEB-ITnose
div, css positioning div css positioning
The company needs to make a page similar to the Renren timeline, so it needs to keep the relative screen position of the timeline unchanged when the page is scrolled. This requires position:fixed to position the div of the timeline, that is, specify left, top, right and other positions to specify the fixed position of the div. For example, I can position it with position:fixed;left:1000px;top:100px.But there is a problem with the position:fixed solution: if you shrink the window so that the window width is less than 1000px or the height is less than 100px, the div will not appear. I took a look at Renren's timeline and found that it can be displayed when the window is reduced. It may be controlled by js (I'm stupid and couldn't figure out how to control it after 20 minutes). Are there any children's shoes familiar with this issue? Or if there is a solution to the problem of position: fixed, please help, thank you.
Reply to discussion (solution)
Fixed relative browser positioning, you can listen to the onresize event, and when the window width is less than 1000px or the height is less than 100px, give the top and left of the div Reassign a value to make it visible.
window.onresize =function(){
//....
}
fixed relative to the browser positioning, you can listen to the onresize event, when the window width is less than 1000px or the height is less than At 100px, reassign a value to the top and left of the div to make it visible.
window.onresize =function(){
//....
}
Thank you. I haven't read any replies today.
That’s what I did.
Still grateful.

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

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



The article discusses the HTML <progress> element, its purpose, styling, and differences from the <meter> element. The main focus is on using <progress> for task completion and <meter> for stati

The article discusses the HTML <datalist> element, which enhances forms by providing autocomplete suggestions, improving user experience and reducing errors.Character count: 159

HTML is suitable for beginners because it is simple and easy to learn and can quickly see results. 1) The learning curve of HTML is smooth and easy to get started. 2) Just master the basic tags to start creating web pages. 3) High flexibility and can be used in combination with CSS and JavaScript. 4) Rich learning resources and modern tools support the learning process.

The article discusses the HTML <meter> element, used for displaying scalar or fractional values within a range, and its common applications in web development. It differentiates <meter> from <progress> and ex

The article discusses the viewport meta tag, essential for responsive web design on mobile devices. It explains how proper use ensures optimal content scaling and user interaction, while misuse can lead to design and accessibility issues.

The article discusses the <iframe> tag's purpose in embedding external content into webpages, its common uses, security risks, and alternatives like object tags and APIs.

HTML defines the web structure, CSS is responsible for style and layout, and JavaScript gives dynamic interaction. The three perform their duties in web development and jointly build a colorful website.

AnexampleofastartingtaginHTMLis,whichbeginsaparagraph.StartingtagsareessentialinHTMLastheyinitiateelements,definetheirtypes,andarecrucialforstructuringwebpagesandconstructingtheDOM.
