1,186,066 questions
-1
votes
1
answer
53
views
Not recieving any response from an active server in javascript/html [duplicate]
Im working on an academic project in which I need to take 2 string inputs from a web form, send them to a server using a POST request, then display a message depending on the response from the server. ...
1
vote
1
answer
72
views
How to optimize the background parallax to be smoother on scrollbar control?
Currently, the parallax background scroll is "jerky" on the scroll with touchpad and scrollbar move, but on the anchor click it's good and smooth.
When I scroll via the mouse wheel, the ...
Advice
2
votes
3
replies
96
views
Video player with a menu in HTML & CSS
I'm making a portfolio website and I want to display some videos in the format of like a little video player where you can click on an option and it will play, i realize this may be a bit complicated ...
-1
votes
0
answers
29
views
Android TalkBack Accessibility Issue – Unwanted Style Announcement [closed]
While testing with TalkBack (Android), a label is announced as:
“start 14px bold color black background white font family serif Medical”
Instead of simply:
“Medical”
Observation:
TalkBack is ...
-1
votes
0
answers
53
views
0.1rem top/bottom is not equal with an image
.box{
background-color: red;
padding: 0.1rem 1rem;
}
img{
width: 24px;
height: 24px;
vertical-align: middle;
}
<div class="box">
<div class="logo">
<img src="https://...
Best practices
0
votes
1
replies
39
views
How to implement dynamic style on HTML elements (leaflet map markers)?
I am working on a leaflet based map.
The map has a bunch of markers which are mostly being drawn with PNG images, though some use FontAwersome SVG icons. Different types of thing use different icons.
...
-3
votes
0
answers
64
views
HTML issues in REDCap [closed]
I have created a table with embedded text boxes and edited the HTML elements to fit the text and text boxes in a line in the cell. On web browser, it looks okay:
however it looks odd on mobile ...
-1
votes
0
answers
73
views
Transparent PNG logo looks invisible or “washed out” with mix-blend-mode: screen [closed]
enter image description hereI’m a beginner in programming and I’m building an HTML page to generate post designs for my own company.
The idea is to keep a fixed layout (structure, size, and logo) and ...
1
vote
1
answer
70
views
Unable to send an HTML file to frontend in Netlify using Node.js
I want to host a Node.js app using Express using Netlify.
This is my server.js code:
const express = require("express")
const path = require("path")
const bodyParser = require(&...
-1
votes
1
answer
85
views
Why are buttons overlapping in a flex container? [closed]
The buttons I have put in the flex container overlaps and I can't seem to figure out why. I have tried text and that seems to work fine. How do I fix this?
#docksnav {
background-color: rgba(0, 0, 0,...
2
votes
0
answers
66
views
Aligning text in an HTML math table
I'm having trouble aligning the text inside a HTML math table.
If you run the code snippet below, you'll see a simple table with two rows, each made up of two columns. My question is, how can I right ...
0
votes
1
answer
76
views
CSS Media Queries not triggering correctly inside an IFrame on Tablet devices ( IFrame Wix HTML Component) [closed]
I am building a "rolling word" text animation that needs to be responsive across Desktop, Tablet, and Mobile. The code is hosted inside an IFrame (Wix HTML Component).
The Problem:
The media ...
0
votes
1
answer
129
views
Telling an <img> to auto adjust its height based on sibling height
I have a loop of wordpress posts - each post is a horizontal flex container with an <img> on the left and a <div> on the right with content of variable height (posts flow one below another)...
Best practices
1
vote
2
replies
116
views
The correct way to mark up headers in html
A while back, I developed a solution for creating unique markup for a set of "cards" in an html page:
<!-- somewhere in the page, doesn't matter where, we create some text to reference --&...
Advice
0
votes
3
replies
140
views
Why do people say that centering a <div> is hard?
I see many coding memes about web development where they talk about centering a <div> is hard. But I don’t really understand why I used to Center a <div> many times. Can someone please ...