1,187,013 questions
1
vote
2
answers
54
views
Wrap text within CSS triangle
I'm trying to create triangles with CSS then wrap text content within the triangles itself, so the triangle is the background and the text matches the triangle shape.
I've seen some examples online ...
-2
votes
0
answers
64
views
How can I obtain this staircase design? [closed]
I couldn't obtain this staircase design properly. I tried css grid, but when I did that, the title and the text on the left side becomes very small.
I didn't want to add left side to the grid too. I ...
0
votes
1
answer
52
views
How do I place my `inline-block` element at the right of my larger `div` container?
I have three divs inside of a larger div, I want one to be at the left, the other at the center / middle of the container div, and the last one at the right of the container.
here is my index.html :
&...
-4
votes
0
answers
55
views
Dvh counts android navigation menu? [closed]
EDIT: SOLVED
The issue was caused by background-attachment: fixed, which is poorly supported and causes rendering glitches on mobile browsers (like the "red space" or background jumping).
...
1
vote
1
answer
69
views
Tab Focus Trapping with textArea causes trap to leave container
I am doing focus trapping with the tab key and when i tab out of the textarea, the tabbing leaves the container. If I use an input instead then the focus trapping works... Any idea's on why focus ...
0
votes
0
answers
72
views
How can I implement this shape from Figma file?
How can I implement this Union shape given in a Figma design. In Dev Mode of Figma this shape with curved arrow only comes as SVG and figma does not give a clip-path css rule for the same. Wanted to ...
0
votes
1
answer
72
views
Strange encoding behavior when adding a value to a xelement
I have the following payload, in which I need to parse a value in the format of an HTML link at a specific location. However, the HTML link must appear between “<” and “>”.
<?xml version=&...
-7
votes
0
answers
98
views
Suggestions on what might be wrong with my HTMl - re passing accessibility
I have been using Accessibe.com's audit tool to ensure my website complies with accessibility standards. After addressing all the notifications from the audit, I achieved a score of 100% for the ...
0
votes
0
answers
43
views
How to make HTML page/viewport 100% height of window in Savannah Browser?
For some reason Savannah Browser (for Android) does not display the page full in height:
Page in Savannah Browser (for Android)
(after killing Savannah Browser and opening it from scratch a blank ...
0
votes
2
answers
66
views
Fade out on image hover not working (css) [closed]
I'm making a portfolio project for class and I've been trying to make a fade in - fade out opacity animation with CSS for some images that act as links. I've succesfully been able to make the fade in ...
1
vote
0
answers
87
views
Control drawing on a canvas on a window from another window (with sliders)
I have a simple window with a canvas on the top and sliders on the bottom.
The sliders adjust what is being drawn on the canvas.
Because I have a few sliders, I have to constantly scroll down to use ...
1
vote
1
answer
64
views
How do I programmatically handle swipe-to-scroll behavior?
I noticed that the template I am currently working on has a vertical scrolling issue when tested on tablet and/or mobile devices.
Here is the current behavior:
Remarks: There are issues with the ...
Advice
1
vote
5
replies
102
views
HTML DIV Styles / Layout
In HTML, I want to do the following:
|------|------|-------|-----|
| | div2 | div3 |div4 |
| div1 | -------------------|
| | div5 | div6 |div7 |
I always want div1 to be absolute on the ...
0
votes
1
answer
95
views
Drag and drop API bugs/strange behavior on Firefox and Chrome [closed]
I want to create an application where you can use drag and drop to transfer some short string data from one browser window to another (where either window can be a popup window). Code in the example ...
0
votes
2
answers
97
views
How to set grid-row on grids that are subgrids?
In this youtube tutorial the author sets grid-template-rows to auto auto auto such that the subgrid items get 3 rows each.
Then later he replaces the grid-template-rows:auto auto auto setting with ...