Wednesday, January 11, 2017

Standard HTML elements (tags) does not have fixed visual presentation

I knew that some HTML elements (tags) like <div> or <span> does not have fixed visual presentation. They were designed to allow user to specify their view using CSS. But now I figured out that presentation of any HTML may be completely changed, even for such elements as <table>, <tr> and <td>. Here I'll demonstrate how you can completely change how your table looks like on small devices using just CSS.

Friday, January 6, 2017

How to create and publish NuGet package from .NET project using AppVeyor

It is not an uncommon task to create a NuGet package from your code and publish it on some NuGet feed. Here I'll explain how to automate this task using AppVeyor.