All Questions
Tagged with frontend web-frontend
416
questions
-1
votes
0
answers
28
views
React version 16.5.2, is it outdated? [closed]
Do you need to study the latest react version, is it okay to go with above version?
I got a tutorial that teaches react version 16.5.2, by learning that version, will I have any problems in the future?...
0
votes
2
answers
41
views
How to make a Svelte child component occupy the full height of the page?
I'm trying to build a simple front-end with Svelte, where I have a main page with different possible child components. My problem is that I can't get the child component to take up the full height of ...
0
votes
2
answers
64
views
Get nth position of the child component in React?
I have a PagesContainer component that renders multiple Page components like this:
<PagesContainer>
<Page />
<Page />
<Page />
<Page />
</PagesContainer>
I ...
0
votes
2
answers
91
views
PureScript: how to make build system produce multiple js outputs?
This would seem like a basic question, but I found no information on it. Websites don't typically consist of a single page. E.g. StackOverflow has menu on the left with Home, Questions, Tags links, ...
1
vote
2
answers
78
views
Appearance of svg object in mobile view is different from desktop view
body {
margin: 0vh 0vw;
}
.header {
position: relative;
width: 100%;
height: 12vh;
background-color: #004d40;
display: flex;
align-items: center;
justify-content: center;
overflow: ...
-1
votes
1
answer
138
views
Responsive Design Breaks in Mobile View During Preloading Phase
#loading-animation {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image:url('data:image/');
background-repeat: no-repeat;
background-size: cover ;
display: ...
0
votes
1
answer
25
views
how to align the items in the navbar ?? Using html and Bootstrap5
I want to create nabvar,with logo on the right side of navbar and other items(Home,Contact Us,About...) towards the left. but when I try to align items, all are moving compleltely towards left. I want ...
0
votes
1
answer
60
views
Am I doing passing this prop wrong?
I'm creating a website using react and tailwind CSS, I don't know why hover on button is not working.
I added my custom colors all the props but hoverColor are okay, also I don't know why the react ...
1
vote
0
answers
154
views
Including an extra button in an accessible autocomplete listbox
I've implemented an autocomplete component in Angular using the aria-activedescendant attribute, so that the focus can remain in the for the filtering functionality to work.
I have a design to follow ...
0
votes
1
answer
205
views
TipTap Collaboration Not Working on Next.js?
Problem: I have two sessions loading with the same id and token passed in; yet, the same document isn't loading. All you need for sessions to collaborate is the those attributes to match, correct??
...
0
votes
0
answers
31
views
How can i make random img background function load faster? [duplicate]
I'm beginner at coding and thats almost my first wesbite to test it i added random background option but it got problem in first load for every background img it take ages that ruin the view because ...
-3
votes
1
answer
56
views
Hover is triggered outside of the it's border. HTML and CSS [closed]
So I am currently making an advent calendar in HTML and am currently expecting a problem with my hover. Hover is triggered even when I am not hovering inside of the box. Here is a video that shows it ...
1
vote
1
answer
65
views
lazy loading of my module fails program loading
I'm trying to load a module dynamically (depends on the number of algorithms in the backend application). The angular app compiles but doesn't load once I add the routes dynamically.
If I add them ...
0
votes
0
answers
43
views
Rendering and Designing Clickable Landscapes for a React app
I am trying to implement a clickable landscape for my React app. Similar to the image attached. I'm having difficulty describing my question and picking what type of framework to implement this with. ...
0
votes
1
answer
189
views
Web component with optional styled slot container?
I believe one of the principles of web component slots is they are intended to mimic standard html expectations. They allow us to project elements into components in the same way as developers are ...