Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- body {
- /*Making the pictures to be raranged horizontally*/
- /*This .hidden is the class of the images that will be shown zoomed*/
- /*We want the radio buttons to be hidden*/
- }
- body label {
- display: inline-block;
- }
- body img {
- width: 12em;
- }
- body img.hidden {
- position: absolute;
- width: 40em;
- display: none;
- }
- body input {
- display: none;
- /*When we check the input the zoomed images will show up*/
- }
- body input:checked + img {
- display: block;
- }
Advertisement
Add Comment
Please, Sign In to add comment