Skip to content

Tag: css

Form submit without PHP

I’ve been trying to figure out how to submit form data without using PHP code, is there a way? The mailto: in HTML 5 only has the user fill the form out, then when submit is clicked, it opens another application (mail app on desktop/laptop, and mail app on smartphones) and puts the data fields inside the mess…

Odd over-scroll behavior

So we have this website, and when you scroll all the way down to the bottom it keeps scrolling. I’ve tried lots of ways to fix this and haven’t come across a valid solution. It seems to be adding margin outside of the main <html> tag. Any help would be greatly appreciated Only custom JS adde…

How can I get a input required with vuejs

I have my chat and I dont want people to send empty message so I would like that my input become required. Thanks for your help. I tried to put “required=’required’” in the input line, I also tried veeValidate but it broke my chat when I use it, I also tried to put “Required = true&#82…

Bootstrap 4 input field in popover

The problem is described in title. I have a Bootstrap 4 modal and one popover with input field with buttons. In IE 11 everything is ok, but in Firefox input loses focus. Popover: Popover html: https://i.stack.imgur.com/rTe2q.png Can anyone tell what is the reason for this, and how to solve this problem? UPD: …

Show text on a radio button selection

I have created a radio button which says “no” and “yes”. By default, nothing is selected. So what I’m looking to do here is, if someone select no, nothing happens, but if someone select “Yes” It should print a text below saying hello world. Can someone help? Answer Yo…

Increasing the size of a bootstrap checkbox

I am creating a simple check box with the code from the official bootstrap documentation: I am wondering how to make the checkbox larger than it currently is? I have tried editing the css of customCheck and changing the height and width properties, but that does not increase the size of the box. Answer It is …

Center component inside the material-ui grid

I want to use same cards and make them center aligned, I searched and tried some solutions but all of them align only the component grid, and not the component content itself (I need them to be equally distant form the borders and from themselves). I’m using this code (https://codesandbox.io/embed/32o8j…