Fluid Design
This article explains the fluid design capabilities RadLinkButton offers. The Example 1 below shows how you can set button size in percent so it can resize with its parent element.
Generally, responsive design means that the page and its content are able to adapt to different screen resolutions without deteriorating the user experience. This often includes changing the font size and having dimensions set in percent.
<style>
html, body, form {
height:100%;
}
</style>
<div style="width:40%; height:30%;">
<telerik:RadLinkButton runat="server" ID="StandartButton" NavigateUrl="https://www.telerik.com" Target="_blank"
Text="Fluid Design" Skin="Default" Width="100%" Height="25%">
</telerik:RadLinkButton>
</div>