RosettaGit
RosettaGit copied to clipboard
CSS isn't a programming language but..
You could easily make an "Hello world" in CSS using pseudo-element and a pseudo class ( :before/:after ) using the "content" property. Like so:
.element:after {
content: "Hello world"
}
Using body as the selector would make it work without needing to add HTML.
body::after {
content: 'Hello World!'
}
Indeed!
i want to contribute here please assign me
@AnshuWorld Feel free to open a Pull Request. I'd happily review it =)