Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
194 views
in Technique[技术] by (71.8m points)

html - CSS Media Query based on element width

Having a modal DIV containing responsive tabs that change from horizontal to vertical on min-width (720px) for example.

This div is Resizable by the user!

So the problem is if the user resizes the div to 600px no responsive change occurs, that's because the screen width didn't change.

My question is: is there any hack or way to make a USER RESIZABLE DIV respond to its width change instead of the screen width? I tried to figure out how to do it with calc, but I think it would be something like :

calc(100% - div-width)= ... etc. 

but I don't think it's supported this way by CSS.

Thanks a lot.

question from:https://stackoverflow.com/questions/65875678/css-media-query-based-on-element-width

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

In order to achieve the result you're looking for as you said in the comments above, i think one great way is to use css grid or flex. You can make your div responsive with one of them without the need of a media query. Example: display: flex; flex-wrap: wrap;.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

1.4m articles

1.4m replys

5 comments

56.9k users

...