1,187,194 questions
0
votes
0
answers
19
views
Browsers don't recognize javascript function
I am migrate a home site from Windows to Linux Debian and Nginx.The HTML code was working under Windows.
Here the part of the HTML code, where I try to call a Javescript function, which is included in ...
0
votes
0
answers
23
views
Loading images in HTML – Differentiation between no response and error response
I'm building a kind of gallery app. Users are adding images by inserting URLs into the database and the HTML page is then hotlinking those. Obviously, because of link rotting, the gallery is full of ...
0
votes
1
answer
47
views
How to make the icon in the center of the button
This is my html code block :
<div class="close-icon">
<button type="button" id="close-button" aria-label="Close">
<i class='bxr bx-x-...
-2
votes
0
answers
29
views
Client-Side, Single-File JS Solution for DOCX and PDF Text Extraction Vanilla JS/Lightweight Lib [closed]
I am working on a pure HTML/JavaScript application (Vanilla JS, single-file setup) that must operate without a Node backend or complex build tools.
The goal is to achieve client-side text extraction ...
1
vote
0
answers
42
views
Css Bem naming blocks in different sections
I'm trying to implement BEM, but I have a review block that appears in both the top-review-section and the product-review-section. My approach is to use a Modifier for context-specific styling, but my ...
-5
votes
1
answer
31
views
How to apply Tkinter (python) into Html base format
I've been trying to input a tkinter code into a HTML format, like when I click a button, it opens a Tkinter layout. But it keeps giving me an error. What must I do?
-6
votes
0
answers
42
views
website has white section on top (near notch) and bottom of Safari iOS 26.1 [closed]
I've recently updated my os to iOS26.1 and noticed that my website appears to have a white section above the header -- the white section is essentially where the iPhone notch is (sorry using an older ...
Advice
0
votes
1
replies
39
views
Use items from local storage to pre-populate a webform
I am new to HTML, CSS and Javascript.
I am building a website that has a shopping cart feature and I am able to list my products, and and remove to the shopping cart and have the UI update the ...
-5
votes
0
answers
60
views
How to properly downsize a video in the browser? [closed]
I'm working on a screen sharing app, and I have an incoming 1920x1080px video stream via WebRTC. My problem is that when I resize the browser, the video becomes really blurry as the browser is ...
2
votes
2
answers
80
views
Can I use CSS to make the top edge of a footer element stick to the bottom edge of the page, without hardcoding its height?
I am working on a website that has a footer element with decorations attached to its top edge in both ::before and ::after pseudo-elements (extending outside the footer element's bounding box), and I ...
2
votes
1
answer
43
views
NiceGUI Fits with Hight and Width of a Web Page
In following Python script I would like to know why horizontal and vertical scroll appear after the script run. I try all widgets just fit into a web page not exceed the page size. Here is my script:
...
Advice
0
votes
4
replies
107
views
How can a CSS animation transform scale start from where a transition left off?
I have an HTML div that contains a photo, amongst other things. This div is movable by the user with a click and drag. When the div is clicked (:active), after a slight delay, I have it grow slightly ...
2
votes
1
answer
39
views
CSS in a Help Text for a page item gets applied to other page items in Oracle APEX
I have defined the following Help Text for a drop down list on a page in oracle APEX :
<html>
<style>
table, th, td {
border:1px solid black;
}
</style>
<body>
<table ...
-1
votes
0
answers
59
views
Displaying full-page heatmap in iframe without coordinate mismatch [closed]
I’m trying to create a heatmap. When a user clicks anywhere on my website, I track the x/y coordinates and save them to the database. In my dashboard, I load the website inside an iframe and display ...
0
votes
1
answer
80
views
How to Dynamically Detect 2nd Page and Dynamically Insert Header on PDF from HTML Template in Python
I am building a webform to PDF utility. Flow is user submits things in form and then submits and a generated PDF opens in new tab.
Problem is sometimes the content of the form can be long and it can ...
-1
votes
0
answers
49
views
Set Font Size of <a> tag in WordPress [closed]
I am new to WordPress. I am trying to figure out how to increase the font size of this "line" as you can see how the underlined portion has smaller font size than the paragraph above. The ...
3
votes
1
answer
65
views
Applying a filter to all subsequent and previous sibling elements in CSS on mouseover
I have a grid of elements that I want to appear in their unfiltered form when the page loads. When a user mouses over one of them, it should stay highlighted while the other elements fade to grey. I ...
0
votes
0
answers
81
views
Creating a scrolling diagonal carousel with N images
I have a carousel of images, which I have tilted diagonally, and now I want to scroll through the images. The only problem is that if I add more images to the carousel track than the four I have, the ...
Advice
0
votes
1
replies
26
views
How to fetch realTime news Data feed
i wanted to know how i can get live news feed data (INDIAN) , without any or like minimal latency(30-40s), i tried using some rss feeds but all they do is provide the data as some latency so what i ...
0
votes
0
answers
37
views
CSS is not being applied correctly in Outlook Classic on macOS [closed]
I am experiencing an issue where the CSS of my email template is breaking on MAC devices that use Outlook Classic. I have tried adding some validations such as the following:
<!--[if mso]> ...
Best practices
0
votes
3
replies
79
views
State of a HTML Checkbox as a Parameter to a new Website
I want to use the state of a checkbox as a parameter to a call of a website.
I.E. there is a checkbox <input type="checkbox" id="myCheck">
and a hyperlink <a href=“/action....
0
votes
1
answer
125
views
Is there a way to recolor a white-and-transparent PNG inside an <img> tag to the current text color with HTML and CSS only? [duplicate]
I have some PNG images where all pixels are pure white with opacities ranging from 0% to 100% which are being added to web pages in <img> tags, and I want to recolor the opaque and semi-...
3
votes
2
answers
119
views
Is there a way to target a pseudo-element in CSS by its class?
I am looking to construct CSS to target this element...
<input type="button"
pseudo="-webkit-media-controls-play-button"
aria-label="play"
...
-1
votes
0
answers
33
views
Entire browser glitching/flickering during CSS transform animation [closed]
I have attached a link to a screen recording of my problem, I am asking here as I cannot find examples of this problem elsewhere and I have tried various possible solutions such as wrapping the ...
Best practices
1
vote
5
replies
122
views
How can I create a fully custom-styled sorting dropdown in React (instead of the default <select> styling)?
I’m trying to build a sorting dropdown for my product list in a React app.
The sorting options are things like:
Default
A - Z
Z - A
Price: Low - High
Price: High - Low
My first approach was to ...