1,381 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
1
answer
53
views
Autocomplete text color overridden when browser spellcheck activates in shadcn Input
I am using shadcn input component and have also enabled autocomplete for the input fields, but when I am choosing from those suggestions, a few seconds after choosing from the suggestions and exactly ...
Advice
0
votes
6
replies
100
views
Has the definition of front-end and back-end changed?
Lately, I've seen so many job ads labeled 'front-end' that ask for experience with back-end technologies.
For example, I've seen jobs labeled front-end that have asked for experience with databases ...
Advice
0
votes
2
replies
78
views
How does a front-end dev think about different users' devices/settings without being overwhelmed?
My professional experience in tech has mostly been on the back-end, but I've been trying to learn more about front-end technologies like React so that I have more tools at my disposal. Broadly ...
-1
votes
1
answer
98
views
Is there a way to maintain information in an iframe when i change tabs?
I have a webpage with several tabs. Inside one of them I include an iframe as a way to manage certain properties, therefore I need the data to be persistent. Each time I change to another tab and come ...
0
votes
2
answers
91
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 ...
2
votes
1
answer
244
views
How do I make a slideshow popup with next/prev arrows within the image?
I want to make a popup with a slideshow but I have a problem, I can't get the naviagtion arrows be placed inside the image container, so when the website is resized they stay in the same place.
I want ...
2
votes
2
answers
212
views
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. Stack Overflow has a menu on the left with Home, Questions, Tags links, ...
0
votes
1
answer
54
views
Why is the right of my webpage content disappearing on smaller browsers / mobile browser view?
I'm doing Meta's Front End Web Development lessons on Coursera.org and have nearly finished my client project for the "HTML and CSS in depth" sessions. But when I make my browser smaller or ...
0
votes
1
answer
92
views
How can I add style to my responsive menu navbar?
I created a navbar with a logo on the left side, links on the right side and another 2 links that are highlighted and I added a icon menu, which appears on small screens, but, the problem is that when ...
0
votes
1
answer
95
views
Aligning Buttons at the Same Line with Tabs in React using Ant Design
I am designing a website, and I need to align buttons and tabs at the same line. When I implement following structure, it does work, but when I add the <Table/> component as children, it does ...
1
vote
2
answers
189
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
152
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: ...
user avatar
user14178341
-1
votes
1
answer
99
views
Running a React and Aspnet project on local network
i have been building a server manager for DayZ for a while now and recently I migrated my files into a new project with Asp.NET backend and React and TypeScript frontend.
The Server itself works well, ...
0
votes
1
answer
35
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
48
views
I tried overwriting an element with a confirmation notification, I tried to remove this notification on confirmation but it returns 'NaN'
I created a div element with two buttons in it:
<div class="js-button-container">
<button class="reset-score-btn js-reset-score-btn">Reset `indent`Score</...