Quantcast
Channel: Active questions tagged html - Stack Overflow
↧

How to load a svg file in HTML5 [closed]

I want to load an svg file in a html5, but it use this script can you help me.So i can load this svg image to a html. it does not working but it takes time to load the svg format because. is little...

View Article


Which characters need to be escaped in HTML?

Are they the same as XML, perhaps plus the space one ( )?I've found some huge lists of HTML escape characters but I don't think they must be escaped. I want to know what needs to be escaped.

View Article


How to Transform Coordinate Grid in JSXGraph

I am trying to transform the coordinate grid, whilst keeping the original grid in the background using the slider and grid.So far I have managed to do this, but for some reason, when I move the slider,...

View Article

Responsive image sizing: Can max-width be coded for a percentage value that...

I am a first-time poster, and I am very unsure of where to post this question.I would like to utilize responsive design on images, where the max-width scale continuously varies as the viewport width...

View Article

Add content above viewport and scroll up

Im trying to make an animation where I add content that is supposed to be located above the page. When the content is added I want it to appear above the page and then scroll upwards. However when I...

View Article


displaytag table column totals

I'm using the displaytag JSP tag library to generate tables that show column totals. For example in the JSP code below, only those columns with the attribute total="true" will have totals generated....

View Article

HTMX afterSwap and afterRequest events not raised on swapped content

A list of items with a "load more" button; the response will contain more items and a new button:<div>Item 1</div><div>Item 2</div><div>Item 3</div><!-- ......

View Article

iFrame unmute and autoplay

I am trying to embed a short video in a website.I can either get it to autoplay or get it to have volume...but not both:to autoplay:<div style="position: relative; overflow: hidden; aspect-ratio:...

View Article


Margin Reset to 0 in 1 Second

When you click the button once the transition is 300 seconds.What i'm trying to do is when you click the button twice Reset it in 1 secondSo what is happening is when you click the button once...

View Article


Getting 302 error on redirection, unable to redirect to next page while...

Im using Flask along with bits of HTML and JSIn my HTML file I have a redirect usingwindow.location.href = window.location.origin +"/menu";and another using:window.location.href =...

View Article

Why is my content out of scrollable area when window size gets reduced?

In my page layout with a fixed header area and main content (split between a sidebar and main content area) everything lines up and if I add dummy content to force a scroll then my header stays at the...

View Article

How do I vertically align text in a div?

I am trying to find the most effective way to align text with a div. I have tried a few things and none seem to work..testimonialText { position: absolute; left: 15px; top: 15px; width: 150px; height:...

View Article

How can I vertically center a div element for all browsers using CSS?

I want to center a div vertically with CSS. I don't want tables or JavaScript, but only pure CSS. I found some solutions, but all of them are missing Internet Explorer 6...

View Article


How to center image horizontally within a div element?

How can I center align (horizontally) an image inside its container div?Here's the HTML and CSS. I have also included the CSS for the other elements of the thumbnail. It runs in descending order so the...

View Article

How does `#:~:text=` in URL work to highlight text?

TL;DRHow/why are some browsers able to search and highlight text in the HTML body which is followed by #:~:text= in the URL?ExplanationOne day I was searching for something on Google, which lead me to...

View Article


Change HTML Select2 pulldown list Width

As I learned and tested that below code will set Select2 pull down list width. It applies to all Select2 on a HTML page..select2-container { width: 200px !important; }I have couple Select2 and I want...

View Article

Image may be NSFW.
Clik here to view.

modal window showing within a section when it should show on entire window

Issue:As seen in image dark portion of modal window is covering only services.Result:I need that it cover entire window as similar to image below. LATEST UPDATEIn css, change from width: 100%; height:...

View Article


Image may be NSFW.
Clik here to view.

How to retain the selected dates in datepicker after submit in PHP

I have 2 datepickers From and To, one submit button in PHP.When selected the dates in two datepickers and click the submit button, the datepicker's values return to default. Here is the code I...

View Article

Proper web.config for removing .html in url on godaddy site

I am using a web.config file to remove the .html from the url on my godaddy site I set up for a non-profit org. I am rather new to this and was given this code from a friend to help and got nothing but...

View Article

What is a Less file?

I've started working newly on the React library. In the entire codebase that I've to work upon, I see *.less files which contain classes related to styles just as we used to have in CSS files for...

View Article

Image may be NSFW.
Clik here to view.

How to apply Photoshop-style color curves filters to an HTML tag?

I'm trying to replicate the following Photoshop color curves filter in an HTML video tag.The closest answer I've found so far is how to add Photoshop-like color levels with CSS and SVG Filters but it's...

View Article


JLabel: how to get space between two span tags

Have following programimport java.awt.BorderLayout;import javax.swing.JFrame;import javax.swing.JLabel;import javax.swing.SwingUtilities;import javax.swing.WindowConstants;public class HTMLabelTryout {...

View Article


Fixing Sticky Table Header with Horizontal Scroll in a Scrollable Container

Problem description:I have a layout where a fixed menu occupies the left side of the viewport, taking up the full height. On the right side, I have a table that dynamically loads data as you scroll....

View Article

Image may be NSFW.
Clik here to view.

Add an arrow under the active menu item in HTML+CSS

I am trying to generate a menu like the following:There are several items in the menu and the active one has an arrow after it.The menu items are tags like the following code:<div...

View Article

Image may be NSFW.
Clik here to view.

Round Star Fully Corners&Edges CSS?

So recently I had a request+curiosity to a design , I need to do inverted round borders but I also have to do round edges in CSS the final shape would be like a " +" with a lot of curbes.CSS Generators...

View Article


I created a table in html but rowspan not working as excepted

table { border-collapse: collapse }td, th { border: solid thin black }<table><tr><td rowspan="2">first</td><td rowspan="4" colspan="9">second</td><td...

View Article

Image may be NSFW.
Clik here to view.

How to add a gap between column without moving to another row in bootstrap 5?

I'm working on a testimonial section that has a structure like this :<div class="container"><div class="row"> (row of the testimonial card)<div class="col"> (content/testimonial...

View Article

Make a div to fill the 100% of parent div

I have two columns divs, the left one is used for navigation, while the right one contains the desired page to be loaded.The left one has two blocks, a first one with the navigation links assigned to...

View Article

Image may be NSFW.
Clik here to view.

Open DIV/SPAN on right side (with content) on link Click

I'm displaying the results in a HTML table for right and wrong answers.Each question has an "Explain Link" as the last colum of the table.If clicked, I want a new DIV or SPAN open adjacent to it on the...

View Article



Image may be NSFW.
Clik here to view.

Add dot dot dot without using ellipsis in css [duplicate]

I am working in an app using Japanese and the ellipsis is awkward when using a specific font-family and text-overflow: ellipsis. I do not want to change the language or the font family, but I need to...

View Article


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>