+ 1
Why is the html colour is not working ?
html colour
16 Respostas
+ 8
It depends on how you define the colour paraventure you apply a background colour to an empty text it may not go I recommend you revisit your HTML colour lessons or view open source codes to have a comparison check and identify your errors
+ 7
Borders don't have a background, so you might have used an invalid attribute to define the color...
+ 7
Your mistake might be anywere so link your code here so we can help you ; )
+ 5
It works normally and without showing here, I can't imagine a case where it would not work...
+ 5
Add style property to your tag and apply color, background-color n whatever you want..... try this
+ 4
Shadowkillyt Shadowkill youtuber
Use
background-color: blue;
To give a blue background color.
Use color: blue;
To give blue color to font
Use border: 2px solid blue;
To give a 2px solid border with blue color.
+ 4
yhaa sure i try it maf
+ 4
You can as well use the codes. Every color has a code, try it. E.g #aaaaa is for grey and so on.
+ 4
Please also link code , I don't understand
+ 4
Shadowkillyt Shadowkill youtuber Please Show me the code in which you are facing problem.
+ 4
For border
border:2px solid red ;
To add color to border
+ 3
like where i try to add bg colour to border
+ 3
thank qwicky🖤
+ 3
Shadowkillyt Shadowkill youtuber
Link ur code mate :) thats the best way for us to solve the problem
+ 3
Link the code here so we can find a solution to the code.
+ 3
Try this
<html>
<head>
<title>first page</title>
</head>
<body bgcolor="#000099">
<h1>
<font color="#FFFFFF"> White headline </font>
</h1>
</body>
</html>