806,753 questions
0
votes
1
answer
20
views
Make text in form controls copy along with regular text
Consider the following HTML snippet:
foo <input type="text" value="bar"> <select><option>baz</option></select> qux
You see "foo bar baz qux" rendered. But if ...
-4
votes
0
answers
24
views
Código CSS reescrever [closed]
Como alterar a cor de preços de um site . E mudar a letra de descrição do produto?
2
votes
1
answer
110
views
Why is this phone number not recognised in iOS Safari?
Consider the HTML code below. When run on an iPad, iPhone (from the Netherlands) in Safari, the numbers in the first two lines are recognized by Safari as phone numbers. However, the number in the ...
-2
votes
0
answers
32
views
Why does IntelliJ IDEA mark `.router-link-active` as unused in Nuxt project but not in pure Vue project?
I'm encountering a difference in IntelliJ IDEA's behavior between pure Vue and Nuxt projects regarding the CSS class .router-link-active.
In a pure Vue project using <RouterLink>, IDEA correctly ...
0
votes
0
answers
44
views
When using the DynamicScroller of vue-virtual-list, there is unexpected gap between sub-list items
Screenshot of actual effect:
The abnormal blank space is circled in red。The template and CSS code are as follows:
<DynamicScroller
:items="msg_list"
:min-item-size=&...
1
vote
1
answer
98
views
Is there a CSS selector for the first element on a page (after a page break)?
I have seen this question having already been asked at least one time on this site. However, there were no satisfying answers, and quite a few years have passed since then. Given the pace of change in ...
-4
votes
0
answers
67
views
bootstrap 5 div responsive image [closed]
how do I make the image below the lines and before the letters responsive? The img-fluid class can't be used here because there's no img tag, only a div tag. The tag responsible for displaying images ...
Advice
0
votes
6
replies
127
views
How do I use CSS selectors to select the child of a parent's sibling when a child is hovered?
Let's say I have this simplified example. These two content divs aren't the same thing because I need to style them differently. "style1" and "style2" text is hidden by default. ...
Best practices
1
vote
3
replies
101
views
Angular Splash Screen - Loading before global CSS
I added a splash screen to my Angular Application and it works.
However, I want to know if it is possible to show the splash screen also while the global css file is loading.
As you can see in the ...
Advice
2
votes
4
replies
103
views
Css vs Bootstrap
Should I rely more on CSS media queries, frameworks like Bootstrap, or other methods to make my website responsive across different devices? I’m a beginner and would appreciate clear, practical advice ...
Advice
0
votes
5
replies
140
views
How to create a dynamic todo list app using Flask, SQL, CSS, JavaScript, HTML, in Pycharm
I'm trying to create a specific to-do list that has the Google keep kind of tick boxes, but I want to create it with Flask so I can store it with the current price of the written list in the database, ...
1
vote
2
answers
91
views
CSS positioning: Absolute child in relative offsetting from body
I am working on a site built with Pico CSS. I have a nav dropdown as follows:
<body>
<main class="container">
<nav>
<ul>
<li><strong>...
-4
votes
0
answers
76
views
How to draw a connection between two divs using css anchor positioning? [closed]
I used the new CSS anchoring to create a simple popover attached to a draggable button.
When the popover reaches the borders it flips correctly.
https://codepen.io/raldone01/pen/pvEQrmd
Now I would ...
-2
votes
0
answers
36
views
How do I match the start of a class name with CSS? [duplicate]
I am trying to make a CSS selector to match elements with a class that starts with ai-. So for example, I would want to match items with ai-images or ai-videos, but not kizuna-ai-images or samurai-...
0
votes
0
answers
49
views
Enable Overlay Scrollbars in Electron app
There is a chromium flag called "overlay-scrollbar". It is supposed to re-enable css overflow: overlay.
Some websites and articles claim that this chromium flag is disabled. However, it is ...