Posts by Caio Andrian • 11 points
5 posts
- 
		0 votes2 answers1057 viewsA: Add elements to a list inside a list compreensionTake a look at this code, I believe it solves your doubt. :) data = ['3', '7.4', '8.2'] new_data = [float(n) for n in data] new_data [3.0, 7.4, 8.2] 
- 
		0 votes1 answer95 viewsA: Change the position of the imagesTake a look at this example Maybe I can help you. Place the javascript code at the bottom of the page. When refreshing the page you will have the images in different positions. Make sure your code… jqueryanswered Caio Andrian 11
- 
		1 votes3 answers154 viewsA: There is some significant difference between the IMG tag and INPUT IMAGEYes, The tag img has more the purpose of just presenting an image on your website. The input type="image" also serves to "transform" an image into a button that will perform some action later. For… htmlanswered Caio Andrian 11
- 
		0 votes1 answer38 viewsA: div does not track header resizingSee if this code helps you, in case the video becomes responsive. (class="embed-Responsive-item") <video autoplay loop id="volume-js" class="embed-responsive-item"> <!-- Default video… 
- 
		0 votes3 answers75169 viewsA: Centralize Divs - BootstrapSee if this code solves your problem. Note that before col-Md-6 we have a div col-Md-12 and if you want to center the content text-align:center. .configdiv { border: 1px solid #DDDDDD;…