I am making a clock.
I wanted to make a background image of the clock like rainbow color by only JavaScript.
I used this JavaScript code:
I am making a clock.
I wanted to make a background image of the clock like rainbow color by only JavaScript.
I used this JavaScript code:
When I scroll down with a mouse,
YouTube video covers the Header.
I found error on " position: relativee; ".
I changed to " position: relative; ",
but it's still unresolved.
So, I deleted it.
I deleted "position: relative;".
Also, I changed "width" and
"height".
Now, It works well with the changed codes.
YouTube video does not cover the Header when scrolling down with a mouse.
Learn more Here is a list of resources that may be helpful as you continue your learning journey.
Choosing between Traditional Web Apps and Single Page Apps (Microsoft)
React Source Code (Github)
https://github.com/facebook/react
Introduction to React.js
The original video recorded at Facebook in 2013.
Project: Virtual Photo Exhibition
Programming language: HTML, CSS, Javascript
Front end framework: Boostrap
I linked CSS-CDN and
Javascript-CDN in index.html.
I made another file for pictures
This img src didn't work in result.
After many attempts, it finally worked with these codes.
text-align : can align text in css.
css에서 {text-align: center;}
{text-align: left;}
{text-align: right;}
{text-align: justify;}
* justify는 text가 same width가 되도록 퍼뜨린다.
* when "justify" spreads the text out, text will be on the line with same width.
ex of HTML center alignment:
<div class="parent">
<div class="child"> </div></div>
.parent { border: 4px solid blue;}
.child { width: 50%; padding:20px; border: 4px solid red; margin: auto;}
DOM is document object model.
I could find more information from https://www.w3.org/TR/WD-DOM/introduction.html
DOM (document object model) looks like this: