1,186,853 questions
-7
votes
0
answers
48
views
How to place content in the bottom of the website/web page? [closed]
I tried multiple time to place text in the bottom of the signup page but it didnt worked. Just let me know how to do it.
-3
votes
1
answer
94
views
Change the text on the button depending on whether the content is shown or hidden
I'm using code that hides content and reveals a button when the page is scrolled down 50px. Clicking the button reveals the same content, and clicking it again hides it.
Here's an exact demo of my ...
0
votes
1
answer
53
views
Create this grid layout using bootstrap
I'm currently using bootstrap with SCSS and I kinda got the left most to work but I'm not sure what to do with the rest I'm not sure how to approach since I haven't made a masonry grid like this and ...
2
votes
1
answer
46
views
CSS subgrid items not flush with parent grid items
Background:
I am attempting to create a thumbnail view of an art portfolio, with thumbnails arranged in a 4×n grid. Some portfolio entries consist of a single image. Other portfolio entries consist of ...
1
vote
1
answer
107
views
How do I dynamically get the number of characters in an HTML heading or paragraph element in CSS?
I'm trying to create a dynamic 'word processor/typewriter' effect on my webpages for specfic sections (code explanations).
I have created the following:
<!DOCTYPE html>
<html lang="en&...
-2
votes
1
answer
68
views
CSS: How to make active tab show the same gradient slice as parent container (no separate gradient)?
I have a layout where tabs are visually part of the same gradient container.
The block consists of:
.purchase-tabs — 3 buttons at the top
.purchase-panel — the main panel below
The panel () has a ...
-2
votes
0
answers
29
views
How do I make an image change when hovering over a link in HTML with javascript? [duplicate]
When a link for something is hovered over, it should replace a blank image with an image related to that link, so hovering over one link shows image1, and hovering over another shows image2, and so on....
2
votes
1
answer
43
views
Will a display:none, loading="lazy" image load with the page?
I've seen lots of simmilar questions, but not one answering specifically what I need. Would a loading="lazy" image be loaded if it's set as display:none by the css?
Would the positioning on ...
-1
votes
2
answers
115
views
Button animation when showing/hiding
I'm using code that hides content and reveals a button when the page is scrolled down 250px. Clicking the button reveals the same content, and clicking it again hides it.
Everything seems to be ...
0
votes
1
answer
24
views
Salesforce Apex trigger fires twice on a single record update
I created a before update trigger on Opportunity to update a related custom field:
trigger UpdateOpportunityField on Opportunity (before update) {
for (Opportunity opp : Trigger.new) {
opp....
Best practices
0
votes
1
replies
15
views
PL/SQL elegant Solution for HTML-User Input
I got a Web Form that is capable of displaying some data to users and reading some user input back into the database. However, I need a ton of parameters to work with, and as the project grows, I ...
3
votes
2
answers
78
views
Handling text input width and making it responsive
I'm working on my unit conversion solo project from the Scrimba Front-End developer course, and I'm struggling hard to make my text input squarish yet responsive.
I managed to make it somewhat like ...
Advice
2
votes
11
replies
123
views
I trapped in tutorial hell what can I do?
I am just learning Html CSS and js, and it's been 8 to 9 months but whenever I start new project or anything my mind is just Blanket. My college is ending in this April and I don't have enough skills ...
1
vote
1
answer
67
views
Angular not loading the updated data after an API call
I am working on a simple Angular app where I fetch data from an API, then load it in the html template.
import { Component, inject, OnInit } from '@angular/core';
import { ReclamationService } from '.....
0
votes
0
answers
160
views
Is it possible to use an HTML canvas as an animated CSS mask?
I am working on a website, and I want to make the headings have an underline with an animated fog mask so random parts gradually fade in and out. Below is a mock-up of what I want to achieve:
I was ...