diff --git a/tag-dropdown-widget.php b/tag-dropdown-widget.php
index 100f3083a4cd3f01d6d1cdedb31641a7169c6652..72b0286603b6a423ca684dd11beded2962d761dc 100644
--- a/tag-dropdown-widget.php
+++ b/tag-dropdown-widget.php
@@ -383,16 +383,16 @@ class taxonomy_dropdown_widget extends WP_Widget {
 		// Widget
 		if ( $widget = $this->plugin->render_dropdown( $instance, $this->number ) ) {
 			// Wrapper and title
-			$output = $before_widget;
+			$output = $before_widget . "\r\n";
 
 			if ( ! empty( $title ) )
-				$output .= $before_title . apply_filters( 'taxonomy_dropdown_widget_title', '<label for="taxonomy_dropdown_widget_dropdown_' . $this->number . '">' . $title . '</label>', $this->number ) . $after_title;
+				$output .= $before_title . apply_filters( 'taxonomy_dropdown_widget_title', '<label for="taxonomy_dropdown_widget_dropdown_' . $this->number . '">' . $title . '</label>', $this->number ) . $after_title . "\r\n";
 
 			// Widget
-			$output .= $widget;
+			$output .= $widget . "\r\n";
 
 			// Wrapper
-			$output .= $after_widget;
+			$output .= $after_widget . "\r\n";
 
 			echo $output;
 		}