• Lumia 830 the post Link Francis Lopes Has Posted
Nokia Lumia 830 
Lumia 730 and Lumia 735, Microsoft's other big news was the Lumia 830, which they tout as "an affordable flagship smartphone". Putting comparisons aside (it is cheaper than the Galaxy S5 and iPhone 5s)

Note

This example shows how to show mobile web browsers already do scrolling well by default. This may not be something you want to do in production.

.blog-content{
 -webkit-user-select: none;
 -khtml-user-select: none;
 -moz-user-select: none;
 -ms-user-select: none;
 user-select: none;
}


<div class="blog-content">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Ullam perspiciatis dolorum! Quis dignissimos voluptatem illum facilis suscipit repellat non voluptates hic laboriosam nesciunt rem voluptatum provident obcaecati ea eum reiciendis nisi explicabo.</div>

.post-body{
 -webkit-user-select: none;
 -khtml-user-select: none;
 -moz-user-select: none;
 -ms-user-select: none;
 user-select: none;
}

pre{
 -webkit-user-select: text;
 -khtml-user-select: text;
 -moz-user-select: text;
 -ms-user-select: text;
 user-select: text;
}

No comments:

Post a Comment