我在另一個div上創建了一個div來創建邊框。只有邊框的div
Here是一個例子:
現在我有一個問題:如果我把鼠標移動到圖片,我得到了重點div
與邊境只有(爲前,如果我想點擊右鍵並保存。 img)但div
一直都是空的(僅用於邊框)我怎麼能忽略div
的中心部分?
我使用了div
,因爲我將邊框放在圖像/其他東西上,並且我無法使用原始邊框獲得相同的結果(放置在圖像外部,並且從邊框和圖像中獲得空白區域)。
在this jsfiddle維度不正確。 (我把邊界用js代碼)
img = $('<div style="position:absolute; width: ' + ($(this) .outerWidth(true) +
leagueBorders[templeague].width) + 'px; height: ' + ($(this) .outerHeight(true) +
leagueBorders[templeague].height) + 'px; max-width: none; top: '+
($(this).position().top + leagueBorders[templeague].top) +'px; left: '+
($(this).position().left + leagueBorders[templeague].left) +'px;"
class="'+leagueBorders[templeague].classe+'"></div>');`
但是你可以很容易地看到問題。如果你右鍵點擊圖像,你會得到一個空白空間的右鍵菜單,而不是圖像選項。
如果我用滾動條(而不是圖像)的文本我不能使用滾動條。
您認爲該標題是什麼? – Sekai
請發佈您的HTML。 –
在jsfiddle中重現它 –