Answers for "html button background color and text color in the html code"

CSS
1

change button color in html

.button_css
{
	background-color: black;
	color: white;
	width: 150px;
	height: 40px;
}
Posted by: Guest on June-19-2021
1

button style background color

ElevatedButton(
  style: ButtonStyle(
    backgroundColor: MaterialStateProperty.all<Color>(Colors.green),
  ),
)
Posted by: Guest on September-09-2021

Code answers related to "html button background color and text color in the html code"

Browse Popular Code Answers by Language