1,187,209 questions
1
vote
0
answers
27
views
text in table cell with image is higher
I have this html code
<table style="font-size:10px">
<tr>
<td style="border:1px solid;padding:0">XXX <svg style="vertical-align:middle" width=20px height=20px viewBox="0 0 ...
-1
votes
0
answers
37
views
Iframes positioning [closed]
I am currently adapting a site to mobile design. The left navigation bar is separated from the rest of the page with an iFrame. I want to show and hide the left navigation bar with a button – this ...
Advice
0
votes
4
replies
40
views
How to localise submit buttons in HTML forms
I am building a multi-lingual website and want to localise the captions shown on buttons in a form.
<form action="check.php" method="post">
<input class="btn btn-...
1
vote
1
answer
80
views
How to align the data upload button with other types of button?
I am writing an R Shiny app and use CSS to format the buttons on the header and footer of the page. I am running into a sticky situation with the Upload button, where no matter how I configure, it ...
0
votes
0
answers
104
views
How to recreate star/pentagram shape using SVG and CSS [closed]
I am trying to recreate Ethopia flag using SVG and CSS but I am unable to do the middle part of the flag – a star pentagram shape.
The star inside the circle is not appearing as expected.
body {
...
-1
votes
0
answers
72
views
Why are my CSS class styles not applying even though the class name is correct? [closed]
I am trying to apply simple CSS to a paragraph but the styles are not being applied. The CSS file is in the same folder as the HTML file.
Here is the minimal code:
<!DOCTYPE html>
<html>
&...
-2
votes
2
answers
41
views
using GDrive link as html base - http 400 [closed]
I try to use <base href="myDriveLink" /> to redirect relative page refs like <a href="test.html" /> to files stored in the Google Drive. I am user and owner.
In any ...
-3
votes
0
answers
71
views
Why is my HTML button not responding when I click it? [closed]
I created a simple button in HTML:
<button onclick="show()">Click Me</button>
<script>
function show(){
alert("Hello");
}
</script>
But when I click the button, nothing ...
0
votes
0
answers
97
views
Set gap between list marker and content
Take the following HTML:
<ol>
<li>one</li>
<li>two</li>
<li>three</li>
</ol>
Is it possible to set the gap between “1.” and “one”, which is the ...
-8
votes
0
answers
83
views
How to revert the code to span replacement of code tags with translated text in between which was translated by Google translate? [duplicate]
How to revert the code to span replacement of code tags with translated text in between which was translated by Google translate ?
Google translate was not translating text between <code ....> ...
-2
votes
0
answers
70
views
JavaScript crossword input freezes and focus does not move to the next cell [closed]
Problem
When I type a letter into a cell, the focus does not move to the next cell in the word.
After typing a letter, the entire input system becomes unresponsive — I can’t type more letters, ...
0
votes
0
answers
26
views
how to change body section style using checkbox in header tag section in a html page [duplicate]
I want to change background color of "maincontent" div element to red when I clicked check box, which is in header tag of my HTML page. please give any idea how to do that.
<!DOCTYPE html&...
Advice
0
votes
0
replies
54
views
css/react/mui border radius like
Graphic designer designed this component that should display forms and messages like an auth form...
I'm a bit confused on how should I code the top right border... I thought a simple border-radius ...
-3
votes
0
answers
35
views
Why is my web display not full when I add aos js? (bootstrap5) [closed]
I'm a junior web developer and I want to create a portfolio website using Bootstrap 5. When it's finalized, I want to add animations using AOS JS. However, when I add these, the website doesn't ...
0
votes
0
answers
46
views
Why does querySelectorAll return an empty NodeList inside my custom class even though elements exist? [duplicate]
I created a small UI class to encapsulate DOM operations:
this.items is always an empty NodeList when the script is loaded in the <head> (not at the end of the body).
If I move the script to the ...