INSERT GRAPHIC HERE (include hyperlink in image)
Subtitle or Short Description Goes Here
.flexbox-centering { | |
display: flex; | |
justify-content: center; | |
align-items: center; | |
height: 100px; | |
} |
/* Smartphones (portrait and landscape) ----------- */ | |
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) { | |
/* Styles */ | |
} | |
/* Smartphones (landscape) ----------- */ | |
@media only screen and (min-width: 321px) { | |
/* Styles */ | |
} |
/* | |
======================================================================================= | |
Using negative margins equal to half of that width and height, | |
after you've absolutely positioned it at 50% / 50% will center | |
it with great cross browser support. | |
====================================================================================== | |
*/ | |
.parent { | |
position: relative; |
class CName extends Component { | |
constructor() { | |
this.state = { | |
firstname: "", | |
}; | |
} | |
handleInputChange = (e) => { | |
this.setState({ | |
firstname: e.target.value, |
I wrote about how to write a great pull request on my blog
This is always helpful as a way to connect the different methods of communication that your company uses within your Product Development teams.
A description of the ticket, explaining potential changes in the code or away from the original intent of the story
This may be a synthesis of offline discussions you had surrounding the code you wrote. It could include what decisions were made, or realizations come to surrounding necessary codebase changes.
// Construct a Canine object | |
var Canine = function(latinName) { | |
this.genus = "Canis"; | |
this.latinName = latinName; | |
} | |
// Create two distinct instances of the Canine object | |
var dog = new Canine("Canis familiaris"); | |
var greyWolf = new Canine("Canis lupus"); |
photo credit (MARION SOLLETTY / FRANCETV INFO)
Paris' École 42 demonstrates an essential character trait of any would-be developer.
Stubbornness.
Call it determination, call it perseverance, it remains as the ability to continue working at a problem.
I allude to this experience as banging my head against the wall.