1,185,704 questions
-1
votes
0
answers
9
views
The mobile hamburger menu isn’t displaying or styling correctly with the current CSS
Honestly, I am at my absolute wits' end with this. I’ve spent the last few hours trying absolutely everything to get this working. I'm trying to rework the dropdown menu of my site when it's in mobile ...
Tooling
0
votes
0
replies
32
views
Which program should I use to access Anthropic with an API key that does not set token limits?
My boss is requesting that I re-create html dashboards synthesizing data from five classroom surveys across 900 students at a university, using antrhropic, specifically an API key to make it scalable ...
Advice
0
votes
1
replies
45
views
How do I make this browser project successful?
So I am making this web browser called Nordstjernen. It is implemented in C.
How can I make this browser project successful?
Nordstjernen.org
https://github.com/nordstjernen-web/nordstjernen
3
votes
1
answer
75
views
Nested unordered list not displaying text-indent they way I think it should in chrome engine. Works with Firefox
In Firefox all of the li items are out-dented, but in the chrome engine (Chrome, Edge, Comodo) the item that starts a nested list doesn't out-dent. Using Developer Tools shows that the out-dent ...
-5
votes
0
answers
81
views
HTML web workers [closed]
i basically was learning about web workers from w3schools and having a hard time to understand it. I understood the concept but still not sure of it. So i am explaining it here if anyone finds ...
0
votes
0
answers
166
views
Image mask is not fully transparent but rather semi-opaque [closed]
The issue as of right now is that the "logo-box" (the mask for the logo image) is currently not fully transparent like it is supposed to be. The idea for the logo is for it to be fully ...
Best practices
0
votes
2
replies
94
views
Struggling to understand how to have some text inside an unordered list bold
A simple example of my unordered list that seems to render but breaks the rules:
<ul>My household pets
<li>There is a fluffy <b>cat</b></li>
<li> The <b>dog&...
Advice
1
vote
4
replies
118
views
As a beginner, how do I transition from HTML/CSS tutorials to building real projects?
I have recently started learning HTML and CSS and can create basic pages using headings, forms, tables, semantic tags, Flexbox, and simple styling.
My challenge is that I can follow tutorials and ...
0
votes
1
answer
81
views
CSS Flexbox collapsing despite being assigned a height [duplicate]
I'm making a front-end for a program that solves a game called Bullpen (aka Queens on LinkedIn).
I want my UI to have a palette of colors on the left-hand side that the user can click on to replicate ...
-1
votes
0
answers
79
views
CSS overlay issue [closed]
I have an overlay in CSS:
.overlay {
position: fixed;
inset: 0;
background: rgba(0, 0, 0, 0.6);
opacity: 0;
pointer-events: none;
transition: opacity 0.3s ease-in-out;
z-...
2
votes
3
answers
140
views
HTML/CSS: Text is centered, but cursor is left-aligned until typing
I am working on a project which involves text fields in editable boxes. The boxes have some placeholder text until the user clicks into the box, and then the placeholder text disappears, allowing the ...
-1
votes
2
answers
96
views
xml: uncapturable attribute
xidel 'https://en.wikipedia.org/wiki/List_of_trigonometric_identities' -e '/html/body/div[3]/div/div[3]/main/div[3]/div[3]/div[2]/table[1]/tbody/tr[2]/td/span/a/img' --output-format=xml
outputs
<?...
-5
votes
1
answer
134
views
selecting only attribute in one invocation of xpath
xidel 'https://en.wikipedia.org/wiki/List_of_trigonometric_identities' -e '/html/body/div[3]/div/div[3]/main/div[3]/div[3]/div[2]/p[5]/span/span/math'
outputs
'
sin
...
-1
votes
0
answers
84
views
How can my rotating image gallery be made to fit within the main container of a responsive website? [closed]
I am attempting to make my own website. The layout is lifted from here. I found a guide on making a marquee here (it's a div with a CSS animation) and combined it with a flexbox horizontal image ...
Advice
1
vote
5
replies
234
views
How do I make a textbox in HTML that clears when I hit enter?
I want to make a textbox on a page that you can type stuff into, and then when you hit enter, it clears all of the text in the textbox. I don't want it to refresh the page or submit the text anywhere ...